結果
問題 | No.1439 Let's Compare!!!! |
ユーザー | tnakao0123 |
提出日時 | 2021-03-28 02:31:20 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 111 ms / 2,000 ms |
コード長 | 1,290 bytes |
コンパイル時間 | 929 ms |
コンパイル使用メモリ | 101,732 KB |
実行使用メモリ | 12,416 KB |
最終ジャッジ日時 | 2024-05-06 22:33:49 |
合計ジャッジ時間 | 2,778 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 4 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 110 ms
12,160 KB |
testcase_11 | AC | 79 ms
7,296 KB |
testcase_12 | AC | 76 ms
7,168 KB |
testcase_13 | AC | 111 ms
12,416 KB |
testcase_14 | AC | 106 ms
12,416 KB |
testcase_15 | AC | 56 ms
5,376 KB |
testcase_16 | AC | 51 ms
5,376 KB |
testcase_17 | AC | 52 ms
5,376 KB |
testcase_18 | AC | 46 ms
5,376 KB |
ソースコード
/* -*- coding: utf-8 -*- * * 1439.cc: No.1439 Let's Compare!!!! - yukicoder */ #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<iostream> #include<string> #include<vector> #include<map> #include<set> #include<stack> #include<list> #include<queue> #include<deque> #include<algorithm> #include<numeric> #include<utility> #include<complex> #include<functional> using namespace std; /* constant */ const int MAX_N = 200000; /* typedef */ typedef set<int> si; /* global variables */ char s[MAX_N + 4], t[MAX_N + 4]; si ks; /* subroutines */ /* main */ int main() { int n, qn; scanf("%d%s%s%d", &n, s, t, &qn); for (int i = 0; i < n; i++) if (s[i] != t[i]) ks.insert(i); while (qn--) { char cs[4]; int x, y; scanf("%s%d%d", cs, &x, &y); x--; char yc = '0' + y; if (cs[0] == 'S') { if (s[x] == t[x] && yc != t[x]) ks.insert(x); else if (s[x] != t[x] && yc == t[x]) ks.erase(x); s[x] = yc; } else { if (s[x] == t[x] && s[x] != yc) ks.insert(x); else if (s[x] != t[x] && s[x] == yc) ks.erase(x); t[x] = yc; } if (! ks.empty()) { int z = *ks.begin(); if (s[z] < t[z]) puts("<"); else puts(">"); } else puts("="); } return 0; }