結果
問題 | No.2030 Googol Strings |
ユーザー | Iván Soto |
提出日時 | 2022-08-06 02:51:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,375 bytes |
コンパイル時間 | 2,177 ms |
コンパイル使用メモリ | 202,256 KB |
実行使用メモリ | 9,120 KB |
最終ジャッジ日時 | 2024-09-16 00:25:16 |
合計ジャッジ時間 | 3,568 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
5,248 KB |
testcase_01 | AC | 4 ms
5,376 KB |
testcase_02 | AC | 5 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 9 ms
5,376 KB |
testcase_05 | AC | 6 ms
5,376 KB |
testcase_06 | AC | 12 ms
6,716 KB |
testcase_07 | AC | 19 ms
9,120 KB |
testcase_08 | AC | 20 ms
9,120 KB |
testcase_09 | AC | 9 ms
5,376 KB |
testcase_10 | AC | 8 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 7 ms
5,376 KB |
testcase_15 | AC | 17 ms
5,376 KB |
testcase_16 | AC | 19 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #ifdef LOCAL #include <algo/debug.h> #else #define debug(...) 42 #endif int main() { ios_base::sync_with_stdio(false); cin.tie(0); int tt; cin >> tt; while (tt--) { string x, y; cin >> x >> y; int sw = 0; if (x.size() > y.size()) { swap(x, y); sw = 1; } int n = (int) x.size(); vector<int> f(n + 1); f[0] = -1; for (int i = 0, j = -1; i < n; i++, j++) { while (j != -1 && x[i] != x[j]) { j = f[j]; } f[i + 1] = j + 1; } int m = (int) y.size(); int ans = -1; for (int i = 0; i < m; i++) { int px = i % n; int py = i % m; if (x[px] < y[py]) { ans = 0; break; } if (x[px] > y[py]) { ans = 1; break; } } debug(ans, sw); if (m % (n - f[n]) == 0) { if (ans == -1) { ans = (n < m ? 0 : 1); } } else { if (ans == -1) { int r = m % (n - f[n]); for (int i = 0, j = 0; i < n - f[n]; i++, j++) { if (x[(i + r) % n] < y[j % m]) { ans = 0; break; } if (x[(i + r) % n] > y[j % m]) { ans = 1; break; } } } assert(ans != -1); } ans ^= sw; cout << (ans == 0 ? "Y" : "X") << '\n'; } return 0; }