結果
問題 | No.2226 Hello, Forgotten World! |
ユーザー | shoshoshom |
提出日時 | 2023-02-24 22:01:35 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,251 bytes |
コンパイル時間 | 2,286 ms |
コンパイル使用メモリ | 205,744 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-13 05:29:27 |
合計ジャッジ時間 | 2,646 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
#ifndef SHO_LOCAL #include <bits/stdc++.h> #define debug(...) ; #else #include "debug.h" #endif #define all(x) (x).begin(), (x).end() #define lb(x, a) lower_bound(all(x), (a)) - (x).begin() typedef long long ll; using namespace std; static inline vector<int> z_algo1(const string &s) { int n = (int)s.size(); vector<int> Z(n); int from = -1, until = -1; for (int i = 1; i < n; i++) { int &a = Z[i]; if (from != -1) { a = max(0, min(Z[i - from], until - i)); } while (i + a < n && s[i + a] == s[a]) { a++; } if (until < i + a) { until = i + a; from = i; } } Z[0] = n; return Z; } static inline vector<int> z_algo2(const string &s) { int n = (int)s.size(); vector<int> Z(n); int from = -1, until = -1; for (int i = 1; i < n; i++) { int &a = Z[i]; if (from != -1) { a = max(0, min(Z[i - from], until - i)); } while (i + a < n && (s[i + a] == s[a] || s[i + a] == '?' || s[a] == '?')) { a++; } if (until < i + a) { until = i + a; from = i; } } Z[0] = n; return Z; } int main() { iostream::sync_with_stdio(0), cin.tie(0); int T; cin >> T; int n; string s; const string S = "helloworld$"; while (T--) { cin >> n >> s; string t = S + s; auto Z1 = z_algo1(t); auto Z2 = z_algo2(t); bool ok = false; int l = Z1.size(), r = l; for (int i = Z1.size() - 1; i >= S.size(); i--) { if (Z1[i] >= 10) { ok = true; break; } } if (ok) { for (int i = 0; i < Z1.size(); i++) { if (t[i] == '?') t[i] = 'a'; } } else { for (int i = Z2.size() - 1; i >= (int)S.size(); i--) { if (Z2[i] >= 10) { ok = true; for (int j = 0; j < i; j++) { if (t[j] == '?') t[j] = 'a'; } for (int j = 0; j < 10; j++) { if (t[i + j] == '?') { t[i + j] = S[j]; } } for (int j = i + 10; j < (int)Z2.size(); j++) { if (t[j] == '?') t[j] = 'a'; } } } } if (!ok) cout << -1 << '\n'; else cout << t.substr(S.size()) << '\n'; } return 0; }