結果
問題 | No.1439 Let's Compare!!!! |
ユーザー | ninoinui |
提出日時 | 2021-03-26 23:03:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,677 bytes |
コンパイル時間 | 2,146 ms |
コンパイル使用メモリ | 205,828 KB |
実行使用メモリ | 6,016 KB |
最終ジャッジ日時 | 2024-11-29 01:10:18 |
合計ジャッジ時間 | 3,201 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 32 ms
5,888 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 31 ms
5,888 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
#pragma GCC diagnostic warning "-Wextra" #pragma GCC diagnostic warning "-Wshadow" #include <bits/stdc++.h> using namespace std; template <class A, class B> bool cmin(A& a, B b) { return a > b && (a = b, true); } template <class A, class B> bool cmax(A& a, B b) { return a < b && (a = b, true); } template <class A, class B> ostream& operator<<(ostream& os, pair<A, B>& p) { return os << '(' << p.first << ", " << p.second << ')'; } static bool debug = false; void dump() {} template <class A, class... B> void dump(A&& a, B&&... b) { if (debug) cout << a << (sizeof...(b) ? ' ' : '\n'), dump(b...); } template <class A> void dump1D(A& a) { if (debug) for (auto i = a.begin(); i != a.end(); i++) cout << *i << (next(i) != a.end() ? ' ' : '\n'); } template <class A> void dump2D(A& a) { if (debug) for (auto i = a.begin(); i != a.end(); i++) dump1D(*i), cout << (next(i) != a.end() ? "" : "\n"); } signed main() { cin.tie(nullptr)->sync_with_stdio(false); debug = true; int N; cin >> N; string S, T; cin >> S >> T; int Q; cin >> Q; vector<tuple<char, int, char>> V(Q); for (int i = 0; i < Q; i++) { char a, c; int b; cin >> a >> b >> c, b--; V.at(i) = {a, b, c}; } int now = 0, pos = INT_MAX; for (int i = 0; i < N; i++) { if (S.at(i) != T.at(i)) { if (S.at(i) < T.at(i)) now = -1; else now = 1; pos = i; break; } } for (const auto& [a, b, c] : V) { if (a == 'S') S.at(b) = c; else T.at(b) = c; if (b <= pos && S.at(b) != T.at(b)) { pos = b; if (S.at(b) < T.at(b)) now = -1; else now = 1; } cout << ((now == -1) ? '<' : (now == 1) ? '>' : '=') << '\n'; } }