結果

問題 No.2226 Hello, Forgotten World!
ユーザー ninja-kidninja-kid
提出日時 2023-02-25 01:07:42
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,074 ms / 2,000 ms
コード長 1,776 bytes
コンパイル時間 10,286 ms
コンパイル使用メモリ 384,428 KB
実行使用メモリ 4,372 KB
最終ジャッジ日時 2023-10-11 07:29:19
合計ジャッジ時間 16,374 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,372 KB
testcase_01 AC 1,042 ms
4,368 KB
testcase_02 AC 1,074 ms
4,368 KB
testcase_03 AC 808 ms
4,372 KB
testcase_04 AC 131 ms
4,372 KB
testcase_05 AC 849 ms
4,368 KB
testcase_06 AC 311 ms
4,372 KB
testcase_07 AC 480 ms
4,372 KB
testcase_08 AC 96 ms
4,372 KB
testcase_09 AC 500 ms
4,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define rrep(i, n, m) for (int i = (int)(n); i > (int)(m); i--)
#define rep1(i, n, m) for (int i = (int)(n); i < (int)(m); i++)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend() using namespace atcoder;
using ll = long long;
const ll MOD1 = 1000000007LL;
const ll MOD2 = 998244353LL;
using namespace std;
using namespace atcoder;
const vector<pair<int, int>> dpos4 = {{1, 0}, {0, 1}, {-1, 0}, {0, -1}};
// const vector<pair<int, int>> dpos8 = {{-1, -1}, {-1, 0}, {-1, 1}, {0, -1}, {0, 1}, {1, -1}, {1, 0}, {1, 1}};
template <typename T>
bool chmax(T &a, const T &b) {
    if (a < b) {
        a = b;  // aをbで更新
        return true;
    }
    return false;
}
template <typename T>
bool chmin(T &a, const T &b) {
    if (a > b) {
        a = b;  // aをbで更新
        return true;
    }
    return false;
}

template<typename T>
T pow(T a, ll b){
    if(b == 0) return 1;
    if(b % 2 == 0) return pow(a / 2, b / 2);
    return a * pow(a, b - 1);
}

int main() {
    int T; cin >> T;
    string base = "helloworld";
    int M = base.size();
    while(T--){
        int N; cin >> N;
        string S; cin >> S;
        string ans = "zzzzzzzzzzzzzzzzzzzzzzzzzzzzz";
        rep(i, N){
            if(i + M - 1 >= N) break;
            bool ok = true;
            string SS = S;
            rep(j, M){
                if(S[i + j] != '?' && S[i + j] != base[j]) ok = false;
                SS[i + j] = base[j];
            }
            SS = regex_replace(SS, regex("\\?"), "a");
            if(ok) chmin(ans, SS);
        }
        if (ans == "zzzzzzzzzzzzzzzzzzzzzzzzzzzzz") ans = "-1";
        cout << ans << '\n';
    }
    return 0;
}
0