結果

問題 No.2226 Hello, Forgotten World!
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-05-05 00:35:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 960 bytes
コンパイル時間 1,481 ms
コンパイル使用メモリ 118,564 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-02 03:26:10
合計ジャッジ時間 2,057 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 11 ms
5,376 KB
testcase_02 AC 35 ms
5,376 KB
testcase_03 AC 18 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 19 ms
5,376 KB
testcase_06 AC 9 ms
5,376 KB
testcase_07 AC 11 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 11 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;
using ll = long long;

void solve(){
    ll N;
    string S, T, U="helloworld";
    cin >> N >> S;
    vector<string> v;

    for (int i=0; i<=N-10; i++){
        bool f=1;
        T = S;
        for (int j=0; j<10; j++){
            if (S[i+j] != '?' && S[i+j] != U[j]){
                f=0;
                break;
            }
            if (S[i+j] == '?') T[i+j] = U[j];
        }
        for (int j=0; j<N; j++) if (T[j] == '?') T[j] = 'a';
        if (f) v.push_back(T);
    }
    if (v.size() == 0){
        cout << -1 << endl;
        return;
    }
    sort(v.begin(), v.end());
    cout << v[0] << endl;
}

int main(){

    int T;
    cin >> T;
    while(T){
        T--;
        solve();
    }

    return 0;
}
0