結果

問題 No.1439 Let's Compare!!!!
ユーザー zuminzumin
提出日時 2021-03-26 22:10:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 415 ms / 2,000 ms
コード長 843 bytes
コンパイル時間 668 ms
コンパイル使用メモリ 79,264 KB
実行使用メモリ 8,308 KB
最終ジャッジ日時 2024-05-06 22:25:52
合計ジャッジ時間 5,339 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 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 7 ms
5,376 KB
testcase_08 AC 12 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 399 ms
8,008 KB
testcase_11 AC 364 ms
8,168 KB
testcase_12 AC 366 ms
8,004 KB
testcase_13 AC 372 ms
8,188 KB
testcase_14 AC 400 ms
8,308 KB
testcase_15 AC 415 ms
8,180 KB
testcase_16 AC 382 ms
8,184 KB
testcase_17 AC 374 ms
8,184 KB
testcase_18 AC 358 ms
8,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <atcoder/segtree>

using namespace std;
using namespace atcoder;

int op(int a,int b) {return abs(a)+abs(b);}
int e() {return 0;}
int chk(int x){ return x==0;}
int main(){
    int n;
    cin>>n;
    vector<int> s,t,diff;
    string ss,st;
    cin>>ss>>st;
    for(auto c:ss) s.push_back(c-'0');
    for(auto c:st) t.push_back(c-'0');
    for(int i=0;i<n;i++) diff.push_back(s[i]-t[i]);
    
    segtree<int,op,e> seg(diff);
    int q;
    cin>>q;
    for(int i=0;i<q;i++){
        char c;
        int x,y;
        cin>>c>>x>>y;
        if(c=='S'){
            s[x-1]=y;
        }else{
            t[x-1]=y;
        }
        seg.set(x-1,s[x-1]-t[x-1]);
        int p=seg.max_right(0,chk);
        if(p==n) cout<<"="<<endl;
        else cout<<((seg.get(p)>0)?">":"<")<<endl;
    }

    return 0;
}
0