#44482: chatgpt c++ 解


s1110418@stu.ccsh.tp.edu.tw (ฅ^•ﻌ•^ฅ)

學校 : 臺北市立中正高級中學
編號 : 259653
來源 : [203.73.243.178]
最後登入時間 :
2024-12-24 17:06:38
a013. 羅馬數字 -- NPSC 模擬試題 | From: [203.72.62.253] | 發表日期 : 2024-12-09 16:05

#include <iostream>
#include <unordered_map>
#include <vector>  // 需要包含這個頭文件
#include <string>
#include <cmath>
using namespace std;

// 阿拉伯數字轉羅馬數字
string toRoman(int num) {
    // 使用 vector 来存羅馬數字對應的值和符號
    vector<pair<int, string>> roman = {
        {1000, "M"}, {900, "CM"}, {500, "D"}, {400, "CD"},
        {100, "C"}, {90, "XC"}, {50, "L"}, {40, "XL"},
        {10, "X"}, {9, "IX"}, {5, "V"}, {4, "IV"},
        {1, "I"}
    };

    string result = "";
    for (auto& pair : roman) {
        while (num >= pair.first) {
            result += pair.second;
            num -= pair.first;
        }
    }
    return result;
}

// 羅馬數字轉阿拉伯数字
int toInt(const string& roman) {
    unordered_map<char, int> roman_map = {
        {'I', 1}, {'V', 5}, {'X', 10}, {'L', 50},
        {'C', 100}, {'D', 500}, {'M', 1000}
    };

    int total = 0;
    int prev_value = 0;
    for (int i = roman.size() - 1; i >= 0; --i) {
        char ch = roman[i];
        int value = roman_map[ch]; // 獲取對應字符的值
        if (value < prev_value) {
            total -= value;
        } else {
            total += value;
        }
        prev_value = value;
    }

    return total;
}

int main() {
    string line;
    while (getline(cin, line)) {
        if (line == "#") break;

        string roman1, roman2;
        int space_pos = line.find(' ');
        roman1 = line.substr(0, space_pos);
        roman2 = line.substr(space_pos + 1);

        int num1 = toInt(roman1);
        int num2 = toInt(roman2);
        
        int diff = abs(num1 - num2);

        if (diff == 0) {
            cout << "ZERO" << endl;
        } else {
            cout << toRoman(diff) << endl;
        }
    }
    return 0;
}

 
ZeroJudge Forum