結果

問題 No.5013 セクスタプル (open)
ユーザー trineutrontrineutron
提出日時 2022-11-10 23:48:15
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,992 ms / 2,000 ms
コード長 2,920 bytes
コンパイル時間 1,074 ms
実行使用メモリ 6,952 KB
スコア 10,357
最終ジャッジ日時 2022-12-29 13:37:39
合計ジャッジ時間 206,840 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 100
権限があれば一括ダウンロードができます

ソースコード

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 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.at(i).fill(true);
        contain_col.at(i).fill(true);
        count_row.at(i).fill(0);
        count_col.at(i).fill(0);
    }

    for (int row = 0; row < 6; row++) {
        for (int col = 0; col < 6; col++) {
            std::array<bool, 6> contain;
            contain.fill(false);
            for (const auto &d : board.at(6 * row + col)) {
                contain.at(d) = true;
                count_row.at(row).at(d)++;
                count_col.at(col).at(d)++;
            }
            for (int type = 0; type < 6; type++) {
                if (not contain.at(type)) {
                    contain_row.at(row).at(type) = false;
                    contain_col.at(col).at(type) = false;
                }
            }
        }
    }

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

    return s;
}

int main() {
    auto start{std::chrono::steady_clock::now()};
    xrand rng;

    std::array<std::array<int, 6>, 36> dice;
    for (int i = 0; i < 36; i++) {
        for (int j = 0; j < 6; j++) {
            std::cin >> dice.at(i).at(j);
            dice.at(i).at(j)--;
        }
    }

    std::array<int, 36> idx;
    std::iota(idx.begin(), idx.end(), 0);
    Board board = dice;
    int best = score(board);
    std::array<int, 36> best_idx = idx;

    while ((std::chrono::steady_clock::now() - start).count() < 1990000000) {
        std::shuffle(idx.begin(), idx.end(), rng);
        for (int i = 0; i < 36; i++) {
            board.at(idx.at(i)) = dice.at(i);
        }
        int s = score(board);
        if (s > best) {
            best = s;
            best_idx = idx;
        }
    }

    std::cerr << best << std::endl;
    for (int i = 0; i < 36; i++) {
        std::cout << best_idx.at(i) / 6 + 1 << ' ' << best_idx.at(i) % 6 + 1 << '\n';
    }

    return 0;
}
0