結果

問題 No.2768 Password Crack
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-12-12 23:05:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,291 bytes
コンパイル時間 2,522 ms
コンパイル使用メモリ 212,884 KB
実行使用メモリ 25,476 KB
平均クエリ数 708.70
最終ジャッジ日時 2024-12-17 12:36:18
合計ジャッジ時間 7,520 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
24,556 KB
testcase_01 AC 27 ms
25,220 KB
testcase_02 AC 51 ms
25,220 KB
testcase_03 AC 50 ms
24,836 KB
testcase_04 WA -
testcase_05 AC 26 ms
25,208 KB
testcase_06 WA -
testcase_07 AC 55 ms
25,220 KB
testcase_08 AC 32 ms
24,580 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 54 ms
24,964 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 49 ms
25,220 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 31 ms
24,836 KB
testcase_29 AC 31 ms
25,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

void query(string &S){
    cout << "? " << S << endl;
}
void answer(string &T){
    cout << "! " << T << endl;
}

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    int N, q, r, n;
    cin >> N;
    q = N / 3;
    r = N % 3;

    string S = string(N, 'a');

    for (int i=0; i<q; i++){
        vector<pair<int, int>> a(26);
        for (int j=0; j<26; j++){
            S[i*3] = char(j+'a');
            S[i*3+1] = char(j+'a');
            S[i*3+2] = char(j+'a');
            query(S);
            cin >> n;
            a[j] = {n, j};
        }
        sort(a.rbegin(), a.rend());
        if (a[0].first == a.back().first+3){
            S[i*3] = char(a[0].second+'a');
            S[i*3+1] = char(a[0].second+'a');
            S[i*3+2] = char(a[0].second+'a');
        }
        else if (a[0].first == a.back().first+2){
            assert(a[1].first == a.back().first+1);
            S[i*3] = char(a[0].second+'a');
            S[i*3+1] = char(a[0].second+'a');
            S[i*3+2] = char(a[0].second+'a');
            for (int j=0; j<3; j++){
                S[i*3+j] = char(a[1].second+'a');
                query(S);
                cin >> n;
                if (n == a.back().first+3){
                    break;
                }
            }
        }
        else{
            assert(a[0].first == a.back().first+1);
            assert(a[1].first == a.back().first+1);
            assert(a[2].first == a.back().first+1);
            vector<int> v = {0,1,2};
            do{
                S[i*3] = char(a[v[0]].second+'a');
                S[i*3+1] = char(a[v[1]].second+'a');
                S[i*3+2] = char(a[v[2]].second+'a');
                query(S);
                cin >> n;
                if (n == a.back().first+3){
                    break;
                }
            } while(next_permutation(v.begin(), v.end()));
        }
    }

    for (int i=0; i<r; i++){
        vector<pair<int, int>> a(26);
        for (int j=0; j<26; j++){
            S[N-1-i] = char(j+'a');
            query(S);
            cin >> n;
            a[j] = {n, j};
        }
        sort(a.rbegin(), a.rend());
        S[N-1-i] = char(a[0].second+'a');
    }

    answer(S);

    return 0;
}
0