結果

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main() {
    constexpr int N = 6;
    int p[N][N] = {};
    int a[2][N] = {};
    int q = 36;

    for (int h = 0; h < 2; h++) {
        for (int i = 0; i < N; i++) {
            a[h][i] = (1 << N) - 1;
        }
    }

    while (q--) {
        int t = 0;
        for (int i = 0; i < N; i++) {
            int d;
            cin >> d;
            if (d < 0) exit(0);
            d--;
            t |= 1 << d;
        }
        t = ~t;

        int i1 = -1, j1 = -1, u = 1 << 30;
        for (int i = 0; i < N; i++) {
            for (int j = 0; j < N; j++) {
                if (p[i][j] == 0) {
                    int s = (__builtin_popcount(a[0][i] & t) + __builtin_popcount(a[1][j] & t)) * 1024 - __builtin_popcount(a[0][i]) - __builtin_popcount(a[1][j]);
                    if (s < u) {
                        u = s;
                        i1 = i;
                        j1 = j;
                    }
                }
            }
        }
        cout << i1 + 1 << ' ' << j1 + 1 << endl;
        p[i1][j1] = 1;
        a[0][i1] &= ~t;
        a[1][j1] &= ~t;
    }

    return 0;
}
0