結果
問題 | No.1439 Let's Compare!!!! |
ユーザー | bonKotsu |
提出日時 | 2021-04-21 00:17:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,039 bytes |
コンパイル時間 | 1,479 ms |
コンパイル使用メモリ | 171,648 KB |
実行使用メモリ | 16,408 KB |
最終ジャッジ日時 | 2024-07-04 05:33:31 |
合計ジャッジ時間 | 5,979 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define ll long long #define rep(i, n) for (int i = 0; i < (n); i++) #define P pair<int, int> string s, t; vector<string> vs, vt; int n, param; void out(int comp) { string res; if (comp == 0) res = ">"; else if (comp == 1) res = "="; else res = "<"; cout << res << endl; } void compare(int& idx) { for (int i = idx; i < n; i++) { if (vs[i] > vt[i]) { param = 0; idx = i; break; } else if (vs[i] < vt[i]) { param = 2; idx = i; break; } else { if (i < n-1) continue; param = 1; idx = i; } } return; } int main() { cin >> n; cin >> s >> t; vs.resize(n), vt.resize(n); rep(i, n) { vs[i] = s[i]-'0'; vt[i] = t[i]-'0'; } int idx = 0; compare(idx); int q; cin >> q; rep(i, q) { char c; int x, y; cin >> c >> x >> y; x--; if (c == 'S') vs[x] = y; else vt[x] = y; if (x > idx) out(param); else { compare(idx); out(param); } } }