結果
問題 | No.2925 2-Letter Shiritori |
ユーザー | yel_ow |
提出日時 | 2024-11-24 05:01:22 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,137 bytes |
コンパイル時間 | 3,117 ms |
コンパイル使用メモリ | 259,612 KB |
実行使用メモリ | 43,536 KB |
最終ジャッジ日時 | 2024-11-24 05:02:06 |
合計ジャッジ時間 | 43,029 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
ソースコード
//#include <monsterenergy> #include <bits/stdc++.h> using namespace std; typedef long long ll; #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() const int MAX = 1e9; const int MIN = -1*1e9; const ll MAXLL = 1e18; const ll MINLL = -1*1e18; int main() { char C; cin >> C; set<pair<char,char>> Ans; vector<pair<int,char>> Count(200); for(int i = 0; i < 200; i++) Count[i] = {MAX,'?'}; for(char i = 'a'; i <= 'z'; i++) Count[i] = {26,i}; cout << "?" << " " << C << C << endl; Ans.insert({C,C}); Count[C].first--; while(true) { string S,S2; cin >> S2 >> S; if(S2 == "!") return 0; Ans.insert({S[0],S[1]}); Count[S[0]].first--; sort(all(Count)); bool f = false; for(int i = 0; i < 100; i++) { char A = S[1]; char B = Count[i].second; if(Ans.count({A,B})) { cout << "?" << " " << A << B << endl; } f = true; Count[A].first--; Ans.insert({A,B}); break; } } return 0; }