結果

問題 No.1439 Let's Compare!!!!
ユーザー 👑 NachiaNachia
提出日時 2021-03-26 22:09:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 553 ms / 2,000 ms
コード長 609 bytes
コンパイル時間 4,500 ms
コンパイル使用メモリ 267,740 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-11-29 08:47:52
合計ジャッジ時間 9,748 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 10 ms
6,820 KB
testcase_08 AC 15 ms
6,816 KB
testcase_09 AC 6 ms
6,816 KB
testcase_10 AC 553 ms
11,904 KB
testcase_11 AC 486 ms
6,912 KB
testcase_12 AC 479 ms
7,040 KB
testcase_13 AC 548 ms
12,160 KB
testcase_14 AC 540 ms
12,160 KB
testcase_15 AC 441 ms
6,816 KB
testcase_16 AC 400 ms
6,816 KB
testcase_17 AC 397 ms
6,820 KB
testcase_18 AC 338 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0