結果

問題 No.2768 Password Crack
ユーザー InTheBloomInTheBloom
提出日時 2024-05-31 22:31:01
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,563 bytes
コンパイル時間 1,516 ms
コンパイル使用メモリ 116,924 KB
実行使用メモリ 25,220 KB
平均クエリ数 971.83
最終ジャッジ日時 2024-05-31 22:31:07
合計ジャッジ時間 5,379 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
24,940 KB
testcase_01 AC 25 ms
24,964 KB
testcase_02 WA -
testcase_03 AC 29 ms
24,836 KB
testcase_04 AC 72 ms
25,220 KB
testcase_05 AC 32 ms
24,580 KB
testcase_06 AC 69 ms
25,220 KB
testcase_07 AC 34 ms
25,220 KB
testcase_08 AC 37 ms
25,220 KB
testcase_09 AC 75 ms
24,452 KB
testcase_10 AC 74 ms
25,220 KB
testcase_11 AC 70 ms
24,580 KB
testcase_12 AC 73 ms
25,220 KB
testcase_13 AC 74 ms
25,220 KB
testcase_14 AC 69 ms
24,580 KB
testcase_15 AC 65 ms
25,220 KB
testcase_16 AC 68 ms
25,220 KB
testcase_17 AC 69 ms
24,836 KB
testcase_18 AC 71 ms
24,836 KB
testcase_19 AC 47 ms
24,580 KB
testcase_20 AC 44 ms
25,220 KB
testcase_21 AC 70 ms
24,836 KB
testcase_22 AC 63 ms
24,580 KB
testcase_23 AC 34 ms
24,964 KB
testcase_24 AC 45 ms
24,836 KB
testcase_25 AC 68 ms
24,964 KB
testcase_26 AC 44 ms
24,824 KB
testcase_27 AC 60 ms
24,964 KB
testcase_28 AC 35 ms
24,964 KB
testcase_29 AC 38 ms
24,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <algorithm>

using namespace std;
using ll = long long;

constexpr int iINF = 1'000'000'000;
constexpr ll llINF = 1'000'000'000'000'000'000;

void solve (int N) {
    // AAA..Aを送り付ける
    // BAA..Aを送り付ける
    // ABA..Aを送り付ける
    // -> N回でAの場所を特定できる。
    // というわけで、A~Yまでを2500回以内で特定できて、ハッピーというわけです。

    vector<vector<int>> idx(26);

    map<int, bool> found;

    for (int i = 0; i < 25; i++) {
        {
            vector<char> S(N, (char)(i + 'a'));
            cout << "? ";
            for (auto c : S) cout << c;
            cout << endl;
        }
        int normal; cin >> normal;

        for (int j = 0; j < N; j++) {
            // 回数節約
            if (found.find(j) != found.end()) continue;

            vector<char> S(N, (char)(i + 'a'));
            S[j] = (char) (i + 'a' + 1);
            cout << "? ";
            for (auto c : S) cout << c;
            cout << endl;

            int res; cin >> res;
            if (res < normal) {
                idx[i].push_back(j);
                found[j] = true;
            }
        }
    }

    vector<char> ans(N, '_');
    for (int i = 0; i < 26; i++) {
        for (auto j : idx[i]) ans[j] = (char) (i + 'a');
    }
    for (int i = 0; i < N; i++) if (ans[i] == '_') ans[i] = 'z';

    cout << "! ";
    for (auto c : ans) cout << c;
    cout << endl;
}

int main () {
    int N; cin >> N;
    solve(N);
}
0