結果
問題 | No.2226 Hello, Forgotten World! |
ユーザー | 2bit |
提出日時 | 2023-02-25 10:53:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 23 ms / 2,000 ms |
コード長 | 1,790 bytes |
コンパイル時間 | 2,648 ms |
コンパイル使用メモリ | 212,632 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-13 10:12:47 |
合計ジャッジ時間 | 3,102 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 23 ms
6,816 KB |
testcase_02 | AC | 5 ms
6,944 KB |
testcase_03 | AC | 6 ms
6,940 KB |
testcase_04 | AC | 3 ms
6,944 KB |
testcase_05 | AC | 6 ms
6,944 KB |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | AC | 4 ms
6,944 KB |
testcase_08 | AC | 3 ms
6,940 KB |
testcase_09 | AC | 4 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define all(x) (x).begin(),(x).end() #define fix(x) fixed << setprecision(x) #define eb emplace_back constexpr char nl='\n'; using namespace std; using ll = long long; using ld = long double; using vl = vector<long long>; using vvl = vector<vector<long long>>; using vs = vector<string>; using pl = pair<long long, long long>; template <typename T> inline bool chmin(T& a, const T& b) {bool compare = a > b; if (a > b) a = b; return compare;} template <typename T> inline bool chmax(T& a, const T& b) {bool compare = a < b; if (a < b) a = b; return compare;} template<class T>using rp_queue=priority_queue<T,vector<T>,greater<T>>; void fast_io(){cin.tie(nullptr);ios_base::sync_with_stdio(false);} template <typename T> T gcd(T a, T b) {if (b == 0)return a; else return gcd(b, a % b);} template <typename T> inline T lcm(T a, T b) {return a /gcd(a, b)*b;} const ll INF = 1LL << 60; const ld PI = acos(-1); string now = "helloworld"; void solve(){ int T;cin>>T; while(T--){ int N;cin>>N; string S;cin>>S; vs s; rep(i,N-10+1){ //i番目からhello worldを構築した時にできる文字列t; bool ok = true; rep(j,10){ if(S[i+j]==now[j]||S[i+j]=='?'){} else ok=false; } if(ok){ string t; rep(j,N){ if(i<=j&&j<=i+9){ t+=now[j-i]; }else{ if(S[j]=='?')t+='a'; else t+=S[j]; } } s.push_back(t); } } sort(all(s)); if(!s.empty())cout<<s.front()<<endl; else cout<<-1<<endl; } } int main(){ fast_io(); int num_tc = 1; //cin >> num_tc; rep(tc,num_tc){ //cout << "Case #" << tc+1 << ": " ;// << endl; solve(); } }