結果
問題 | No.1439 Let's Compare!!!! |
ユーザー | 👑 Nachia |
提出日時 | 2021-03-26 22:09:56 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 509 ms / 2,000 ms |
コード長 | 609 bytes |
コンパイル時間 | 4,028 ms |
コンパイル使用メモリ | 266,052 KB |
実行使用メモリ | 12,160 KB |
最終ジャッジ日時 | 2024-05-06 22:25:45 |
合計ジャッジ時間 | 9,095 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 10 ms
6,940 KB |
testcase_08 | AC | 15 ms
6,944 KB |
testcase_09 | AC | 5 ms
6,940 KB |
testcase_10 | AC | 499 ms
11,904 KB |
testcase_11 | AC | 447 ms
7,040 KB |
testcase_12 | AC | 435 ms
7,040 KB |
testcase_13 | AC | 509 ms
12,160 KB |
testcase_14 | AC | 504 ms
12,160 KB |
testcase_15 | AC | 424 ms
6,940 KB |
testcase_16 | AC | 405 ms
6,944 KB |
testcase_17 | AC | 394 ms
6,940 KB |
testcase_18 | AC | 339 ms
6,944 KB |
ソースコード
#include <atcoder/all> using namespace atcoder; #include <bits/stdc++.h> using namespace std; using ll=long long; using ull=unsigned long long; #define rep(i,n) for(int i=0; i<(n); i++) int N,Q; string S,T; set<int> G; int main(){ cin>>N>>S>>T>>Q; rep(i,N) if(S[i]!=T[i]) G.insert(i); rep(i,Q){ char c; int x,y; cin>>c>>x>>y; x--; if(S[x]!=T[x]) G.erase(x); if(c=='S') S[x]=y+'0'; if(c=='T') T[x]=y+'0'; if(S[x]!=T[x]) G.insert(x); if(G.size()==0) printf("=\n"); else{ int p=*G.begin(); if(S[p]<T[p]) printf("<\n"); else printf(">\n"); } } return 0; }