結果

問題 No.5014 セクスタプル (reactive)
ユーザー trineutrontrineutron
提出日時 2022-11-11 05:55:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 3,093 bytes
コンパイル時間 1,155 ms
実行使用メモリ 41,312 KB
スコア 0
最終ジャッジ日時 2022-11-11 05:55:56
合計ジャッジ時間 8,100 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
testcase_75 -- -
testcase_76 -- -
testcase_77 -- -
testcase_78 -- -
testcase_79 -- -
testcase_80 -- -
testcase_81 -- -
testcase_82 -- -
testcase_83 -- -
testcase_84 -- -
testcase_85 -- -
testcase_86 -- -
testcase_87 -- -
testcase_88 -- -
testcase_89 -- -
testcase_90 -- -
testcase_91 -- -
testcase_92 -- -
testcase_93 -- -
testcase_94 -- -
testcase_95 -- -
testcase_96 -- -
testcase_97 -- -
testcase_98 -- -
testcase_99 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <array>
#include <chrono>
#include <fstream>
#include <iostream>
#include <random>

using Board = std::array<std::array<int, 6>, 36>;

class xrand {
    uint64_t x;

   public:
    using result_type = uint32_t;
    static constexpr result_type min() {
        return std::numeric_limits<result_type>::min();
    }
    static constexpr result_type max() {
        return std::numeric_limits<result_type>::max();
    }
    xrand(uint64_t k) : x(k) {}
    xrand() : xrand(1) {}
    result_type operator()() {
        x ^= x << 9;
        x ^= x >> 7;
        return (x * 0x123456789abcdef) >> 32;
    }
};

int calc_score(const Board &board) {
    std::array<std::array<bool, 6>, 6> contain_row, contain_col;
    std::array<std::array<int, 6>, 6> count_row, count_col;
    for (int i = 0; i < 6; i++) {
        contain_row[i].fill(true);
        contain_col[i].fill(true);
        count_row[i].fill(0);
        count_col[i].fill(0);
    }

    for (int row = 0; row < 6; row++) {
        for (int col = 0; col < 6; col++) {
            const int idx = 6 * row + col;
            for (int type = 0; type < 6; type++) {
                if (board[idx][type] == 0) {
                    contain_row[row][type] = false;
                    contain_col[col][type] = false;
                } else {
                    count_row[row][type] += board[idx][type];
                    count_col[col][type] += board[idx][type];
                }
            }
        }
    }

    int s = 0;
    for (int i = 0; i < 6; i++) {
        for (int type = 0; type < 6; type++) {
            if (contain_row[i][type]) {
                s += count_row[i][type] - 3;
            }
            if (contain_col[i][type]) {
                s += count_col[i][type] - 3;
            }
        }
    }

    return s;
}

int main() {
    xrand rng;
    std::uniform_int_distribution<> dist(0, 5);

    Board board;
    for (int i = 0; i < 36; i++) {
        board[i].fill(0);
    }
    std::array<bool, 36> used;
    used.fill(false);
    for (int i = 0; i < 35; i++) {
        std::array<int, 6> dice;
        dice.fill(0);
        for (int j = 0; j < 6; j++) {
            int d;
            std::cin >> d;
            d--;
            dice[d]++;
        }
        std::array<int, 36> score;
        score.fill(0);
        for (int j = 0; j < 36; j++) {
            if (used[j]) {
                score[j]--;
                continue;
            }
            for (int itr = 0; itr < 10000; itr++) {
                Board board_new = board;
                board_new[j] = dice;
                for (int k = 0; k < 36; k++) {
                    if (used[k] or k == j) continue;
                    for (int l = 0; l < 6; l++) {
                        board_new[k][dist(rng)]++;
                    }
                }
                score[j] += calc_score(board_new);
            }
        }
        int idx = std::max_element(score.begin(), score.end()) - score.begin();
        std::cout << idx / 6 + 1 << ' ' << idx % 6 + 1 << std::endl;
        used[idx] = true;
    }
    return 0;
}
0