結果
問題 | No.1439 Let's Compare!!!! |
ユーザー | Example0911 |
提出日時 | 2021-03-26 21:48:14 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 494 ms / 2,000 ms |
コード長 | 1,137 bytes |
コンパイル時間 | 2,060 ms |
コンパイル使用メモリ | 212,456 KB |
実行使用メモリ | 19,584 KB |
最終ジャッジ日時 | 2024-11-29 08:40:59 |
合計ジャッジ時間 | 6,693 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 8 ms
5,248 KB |
testcase_08 | AC | 12 ms
5,248 KB |
testcase_09 | AC | 5 ms
5,248 KB |
testcase_10 | AC | 450 ms
19,200 KB |
testcase_11 | AC | 386 ms
12,800 KB |
testcase_12 | AC | 363 ms
12,672 KB |
testcase_13 | AC | 455 ms
19,584 KB |
testcase_14 | AC | 494 ms
19,584 KB |
testcase_15 | AC | 372 ms
8,960 KB |
testcase_16 | AC | 305 ms
8,448 KB |
testcase_17 | AC | 289 ms
8,448 KB |
testcase_18 | AC | 264 ms
8,320 KB |
ソースコード
#include "bits/stdc++.h" #define int long long using namespace std; using ll = long long; using P = pair<ll, ll>; const ll INF = (1LL << 61); ll mod = 1000000007; signed main() { ios::sync_with_stdio(false); cin.tie(0); int N; cin >> N; string S, T; cin >> S >> T; vector<int>s(N), t(N); for (int i = 0; i < N; i++) { s[i] = S[i] - '0'; t[i] = T[i] - '0'; } int Q; cin >> Q; vector<int>a(N, 0); set<pair<int, int>>st; for (int i = 0; i < N; i++) { if (s[i] < t[i]) { a[i] = -1; st.insert({ i, -1 }); } else if(s[i] > t[i]) { a[i] = 1; st.insert({ i, 1 }); } } for (int _ = 0; _ < Q; _++) { char c; cin >> c; int x, y; cin >> x >> y; x--; int tmp = a[x]; if (c == 'S') { s[x] = y; } else { t[x] = y; } if(tmp != 0)st.erase({ x, tmp }); if (s[x] < t[x]) { a[x] = -1; st.insert({ x, -1 }); } else if (s[x] > t[x]) { a[x] = 1; st.insert({ x, 1 }); } else a[x] = 0; if (st.empty())cout << "=" << endl; else { auto itr = st.begin(); pair<int, int> p = *itr; if (p.second == 1)cout << ">" << endl; else cout << "<" << endl; } } return 0; }