結果
| 問題 |
No.1439 Let's Compare!!!!
|
| コンテスト | |
| ユーザー |
ninoinui
|
| 提出日時 | 2021-03-27 00:20:03 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 150 ms / 2,000 ms |
| コード長 | 1,646 bytes |
| コンパイル時間 | 2,186 ms |
| コンパイル使用メモリ | 204,280 KB |
| 最終ジャッジ日時 | 2025-01-19 23:44:15 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 17 |
ソースコード
#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};
}
set<int> SE;
for (int i = 0; i < N; i++) {
if (S.at(i) != T.at(i)) SE.insert(i);
}
for (const auto& [a, b, c] : V) {
if (a == 'S') S.at(b) = c;
else T.at(b) = c;
if (S.at(b) == T.at(b)) SE.erase(b);
else SE.insert(b);
if ((int)SE.size()) {
auto tmp = *SE.begin();
if (S.at(tmp) < T.at(tmp)) cout << '<' << '\n';
else cout << '>' << '\n';
} else {
cout << '=' << '\n';
}
}
}
ninoinui