結果
問題 | No.518 ローマ数字の和 |
ユーザー | vvataarne |
提出日時 | 2017-05-28 21:57:05 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 3,695 bytes |
コンパイル時間 | 1,883 ms |
コンパイル使用メモリ | 178,940 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-21 15:25:03 |
合計ジャッジ時間 | 2,684 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 3 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
ソースコード
// clang-format off #include <bits/stdc++.h> #define int long long #define main signed main() // #define main int main() #define bye return 0 #define loop(i, a, n) for (int i = (a); i < (n); i++) #define rep(i, n) loop(i, 0, n) #define all(v) (v).begin(), (v).end() #define rall(v) (v).rbegin(), (v).rend() #define prec(n) fixed << setprecision(n) #define stlice(from, to) substr(from, (to) - (from) + 1) #define min(...) min({__VA_ARGS__}) #define max(...) max({__VA_ARGS__}) #define pb push_back #define mp make_pair #define mt make_tuple #define fi first #define se second using namespace std; using pii = pair<int, int>; using vi = vector<int>; using vd = vector<double>; using vvi = vector<vi>; using vc = vector<char>; using vs = vector<string>; using vpii = vector<pii>; template<typename A> using fn = function<A>; constexpr int INF = sizeof(int) == sizeof(long long) ? 1000000000000000000LL : 1000000000; constexpr int MOD = 1000000007; constexpr double PI = acos(-1); constexpr int dx[4] = {0, 0, -1, 1}, dy[4] = {-1, 1, 0, 0}; template<typename A, typename B> bool cmin(A &a, const B &b) { if (a > b) { a = b; return true; } else return false; } template<typename A, typename B> bool cmax(A &a, const B &b) { if (a < b) { a = b; return true; } else return false; } namespace ftl { template<typename V, typename F> constexpr V fmap(V v, const F &f) { transform(all(v), v.begin(), f); return v; } template<typename V, typename F> constexpr V filterNot(V v, const F &f) { v.erase(remove_if(all(v), f), v.end()); return v; } template<typename V, typename F> constexpr V filter(V v, const F &f) { return filterNot(v, [&](typename V::value_type x) { return !f(x); }); } template<typename X, typename V, typename F> constexpr X fold(const X &x, const V &v, const F &f) { return accumulate(all(v), x, f); } template<typename V> constexpr typename V::value_type sum(const V &v) { return accumulate(all(v), 0); } constexpr bool odd(const int &n) { return n & 1; } constexpr bool even(const int &n) { return !odd(n); } template<typename V, typename F> constexpr bool andall(const V &v, const F &f) { bool b = true; for (auto &p : v) b &= f(p); return b; } template<typename V, typename F> constexpr bool orany(const V &v, const F &f) { bool b = false; for (auto &p : v) b |= f(p); return b; } constexpr int gcd(int a, int b) { int c = 0; while (a) { c = a; a = b % a; b = c; } return b; } constexpr int pows(int a, int b) { int c = 1; while (b) { if (odd(b)) c *= a; b >>= 1; a *= a; } return c; } } using namespace ftl; // clang-format on template<typename A> using vpix = vector<pair<int, A>>; vpix<char> u; vpix<string> m; int f(string s) { int c = 0, l = 0; for (int i = s.size() - 1; i >= 0; i--) { for (auto p : u) { if (s[i] == p.second) { c += p.first * (l <= p.first ? 1 : -1); l = p.first; } } } return c; } string g(int x) { string s = ""; for (auto p : m) { int q = x / p.first; if (q > 0) { rep(i, q) s = s + p.second; x -= p.first * q; } } return s; } main { u.pb(mp(1000, 'M')); u.pb(mp(500, 'D')); u.pb(mp(100, 'C')); u.pb(mp(50, 'L')); u.pb(mp(10, 'X')); u.pb(mp(5, 'V')); u.pb(mp(1, 'I')); m.pb(mp(1000, "M")); m.pb(mp(900, "CM")); m.pb(mp(500, "D")); m.pb(mp(400, "CD")); m.pb(mp(100, "C")); m.pb(mp(90, "XC")); m.pb(mp(50, "L")); m.pb(mp(40, "XL")); m.pb(mp(10, "X")); m.pb(mp(9, "IX")); m.pb(mp(5, "V")); m.pb(mp(4, "IV")); m.pb(mp(1, "I")); int n; cin >> n; int c = 0; rep(i, n) { string s; cin >> s; c += f(s); } if (c >= 4000) { cout << "ERROR" << endl; bye; } cout << g(c) << endl; bye; }