結果

問題 No.3418 【絶望】30個並列ごちゃ混ぜHit&Blowで遊ぼう!
コンテスト
ユーザー LNG
提出日時 2025-12-25 13:17:46
言語 C++23
(gcc 13.3.0 + boost 1.89.0)
結果
AC  
実行時間 4,852 ms / 5,000 ms
コード長 5,078 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,023 ms
コンパイル使用メモリ 194,784 KB
実行使用メモリ 25,972 KB
スコア 9,990,912
平均クエリ数 90.88
最終ジャッジ日時 2025-12-25 13:26:02
合計ジャッジ時間 496,103 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 100
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cmath>
#include <random>
#include <chrono>

using namespace std;

struct Result {
    int h, b;
    bool operator<(const Result& o) const { return h != o.h ? h < o.h : b < o.b; }
    bool operator==(const Result& o) const { return h == o.h && b == o.b; }
};

struct Guess {
    int d[5];
    int mask;
};

inline Result get_hb(const Guess& q, const Guess& t) {
    int h = (q.d[0] == t.d[0]) + (q.d[1] == t.d[1]) + (q.d[2] == t.d[2]) + (q.d[3] == t.d[3]) + (q.d[4] == t.d[4]);
    int b = __builtin_popcount(q.mask & t.mask) - h;
    return {h, b};
}

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

    auto g_start = chrono::steady_clock::now();
    vector<Guess> all_g;
    for (int i = 0; i <= 99999; i++) {
        int tmp = i, m = 0, digs[5];
        bool ok = true;
        for (int j = 4; j >= 0; j--) {
            digs[j] = tmp % 10;
            if (m & (1 << digs[j])) ok = false;
            m |= (1 << digs[j]);
            tmp /= 10;
        }
        if (ok) {
            Guess g; g.mask = m;
            for (int j = 0; j < 5; j++) g.d[j] = digs[j];
            all_g.push_back(g);
        }
    }

    vector<int> candidates;
    candidates.reserve(all_g.size());
    for (int i = 0; i < (int)all_g.size(); i++) candidates.push_back(i);

    mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
    int found_total = 0;
    int turn = 0;

    while (found_total < 30) {
        int best_idx = -1;
        auto now_t = chrono::steady_clock::now();
        int elapsed = chrono::duration_cast<chrono::milliseconds>(now_t - g_start).count();

        if (turn == 0) {
            for (int i = 0; i < (int)all_g.size(); i++) {
                if (all_g[i].d[0] == 0 && all_g[i].d[1] == 1 && all_g[i].d[2] == 2 && all_g[i].d[3] == 3 && all_g[i].d[4] == 4) {
                    best_idx = i; break;
                }
            }
        } else if (turn == 1 && found_total < 20) {
            for (int i = 0; i < (int)all_g.size(); i++) {
                if (all_g[i].d[0] == 5 && all_g[i].d[1] == 6 && all_g[i].d[2] == 7 && all_g[i].d[3] == 8 && all_g[i].d[4] == 9) {
                    best_idx = i; break;
                }
            }
        } else if (candidates.size() <= (size_t)(30 - found_total)) {
            if (!candidates.empty()) best_idx = candidates[0];
            else best_idx = rng() % all_g.size();
        } else {
            double max_val = -1e18;
            int search_limit = (candidates.size() < 300) ? candidates.size() : 500;
            auto t_eval_start = chrono::steady_clock::now();
            
            while (true) {
                int t_idx = (rng() % 10 < 7 || candidates.size() < 100) ? candidates[rng() % candidates.size()] : rng() % all_g.size();
                int counts[6][6] = {0};
                int samples = min((int)candidates.size(), 400);
                
                for (int i = 0; i < samples; i++) {
                    int target = (samples == (int)candidates.size()) ? candidates[i] : candidates[rng() % candidates.size()];
                    Result r = get_hb(all_g[t_idx], all_g[target]);
                    counts[r.h][r.b]++;
                }

                double score = 0;
                int max_g = 0;
                for (int h = 0; h <= 5; h++) {
                    for (int b = 0; b <= 5; b++) {
                        if (counts[h][b] > 0) {
                            double p = (double)counts[h][b] / samples;
                            score -= p * log2(p);
                            max_g = max(max_g, counts[h][b]);
                        }
                    }
                }
                
                double final_score = score * 1000.0 - max_g; 
                if (final_score > max_val) {
                    max_val = final_score;
                    best_idx = t_idx;
                }

                auto current_t = chrono::steady_clock::now();
                if (chrono::duration_cast<chrono::milliseconds>(current_t - t_eval_start).count() > 300 || 
                    chrono::duration_cast<chrono::milliseconds>(current_t - g_start).count() > 4800) break;
            }
        }

        if (best_idx == -1) best_idx = candidates[0];
        for (int i = 0; i < 5; i++) cout << all_g[best_idx].d[i];
        cout << endl;

        int res_map[6][6] = {0};
        for (int i = 0; i < 30; i++) {
            int h, b;
            if (!(cin >> h >> b)) return 0;
            if (h == -1) return 0;
            res_map[h][b]++;
        }

        found_total = res_map[5][0];
        if (found_total == 30) break;

        vector<int> next_c;
        next_c.reserve(candidates.size());
        for (int idx : candidates) {
            Result r = get_hb(all_g[best_idx], all_g[idx]);
            if (r.h == 5 && r.b == 0) continue;
            if (res_map[r.h][r.b] > 0) {
                next_c.push_back(idx);
            }
        }
        candidates = move(next_c);
        turn++;
    }

    return 0;
}
0