結果

問題 No.1439 Let's Compare!!!!
ユーザー lasjg72lasjg72
提出日時 2021-03-27 01:59:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 526 ms / 2,000 ms
コード長 1,129 bytes
コンパイル時間 942 ms
コンパイル使用メモリ 89,616 KB
実行使用メモリ 12,032 KB
最終ジャッジ日時 2024-05-06 22:31:54
合計ジャッジ時間 6,296 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 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 10 ms
5,376 KB
testcase_08 AC 15 ms
5,376 KB
testcase_09 AC 6 ms
5,376 KB
testcase_10 AC 516 ms
11,904 KB
testcase_11 AC 476 ms
6,912 KB
testcase_12 AC 467 ms
7,040 KB
testcase_13 AC 526 ms
12,032 KB
testcase_14 AC 518 ms
12,032 KB
testcase_15 AC 413 ms
5,376 KB
testcase_16 AC 371 ms
5,376 KB
testcase_17 AC 374 ms
5,376 KB
testcase_18 AC 338 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <tuple>
#include <vector>
#include <string>
#include <queue>
#include <cmath>
#include <set>
#include <map>
#include <cassert>

using namespace std;
using ll = long long;

int main()
{
    int n, q;
    string s, t;
    cin >> n >> s >> t >> q;
    set<int> num;
    for(int i = 0; i < n; i++){
        if(s[i] != t[i]) num.insert(i);
    }
    while(q--){
        char c, y;
        int x;
        cin >> c >> x >> y;
        x--;
        int now;
        if(c == 'S'){
            s[x] = y;
            if(s[x] != t[x]){
                num.insert(x);
            }else{
                num.erase(x);
            }
            now = *num.begin();
        }else{
            t[x] = y;
            if(s[x] != t[x]){
                num.insert(x);
            }else{
                num.erase(x);
            }
            now = *num.begin();
        }
        if(s[now]-'0' > t[now] -'0'){
            cout << '>' << endl;
        }else if(s[now]-'0' < t[now] -'0'){
            cout << '<' << endl;
        }else{
            cout << '=' << endl;
        }
    }
    return 0;
}
0