結果

問題 No.452 横着者のビンゴゲーム
ユーザー ckawatakckawatak
提出日時 2019-01-02 16:40:29
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 2,337 bytes
コンパイル時間 1,397 ms
コンパイル使用メモリ 74,092 KB
実行使用メモリ 168,224 KB
最終ジャッジ日時 2024-11-21 05:01:04
合計ジャッジ時間 54,492 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,640 KB
testcase_01 AC 2 ms
168,224 KB
testcase_02 AC 2 ms
13,640 KB
testcase_03 AC 6 ms
163,620 KB
testcase_04 AC 2 ms
13,636 KB
testcase_05 AC 7 ms
81,956 KB
testcase_06 AC 1 ms
13,636 KB
testcase_07 AC 2 ms
132,004 KB
testcase_08 AC 3 ms
13,640 KB
testcase_09 AC 2 ms
82,080 KB
testcase_10 AC 2 ms
13,632 KB
testcase_11 AC 2 ms
81,956 KB
testcase_12 AC 1 ms
13,636 KB
testcase_13 AC 1 ms
81,952 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 459 ms
7,040 KB
testcase_18 AC 416 ms
13,312 KB
testcase_19 AC 434 ms
9,216 KB
testcase_20 AC 387 ms
7,680 KB
testcase_21 AC 1,173 ms
29,952 KB
testcase_22 AC 338 ms
6,816 KB
testcase_23 AC 2,560 ms
54,912 KB
testcase_24 AC 253 ms
6,820 KB
testcase_25 AC 99 ms
6,820 KB
testcase_26 AC 1,598 ms
29,696 KB
testcase_27 AC 1,492 ms
19,584 KB
testcase_28 AC 491 ms
14,592 KB
testcase_29 AC 396 ms
9,472 KB
testcase_30 AC 1,776 ms
36,480 KB
testcase_31 AC 196 ms
7,808 KB
testcase_32 AC 175 ms
6,816 KB
testcase_33 AC 954 ms
15,232 KB
testcase_34 AC 661 ms
13,952 KB
testcase_35 AC 725 ms
11,264 KB
testcase_36 AC 142 ms
6,820 KB
testcase_37 AC 162 ms
6,820 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;

int main() {
    int N, M;

    cin >> N >> M;

    vector<vector<vector<int> > > players(M);

    int maximum = 0;
    for (int i = 0; i < M; i++) {
        vector<vector<int> > card(N);
        for (int j = 0; j < N; j++) {
            vector<int> row(N);
            for (int k = 0; k < N; k++) {
                cin >> row[k];
                maximum = max(maximum, row[k]);
            }
            card[j] = row;
        }
        players[i] = card;
    }

    vector<vector<vector<int> > > bingos(M);
    
    for (int i = 0; i < M; i++) {
        vector<vector<int> > lines;
        
        // left to right
        for (int j = 0; j < N; j++) {
            vector<int> lr(maximum);
            for (int k = 0; k < N; k++) {
                lr[players[i][j][k]-1] = 1;
            }
            lines.push_back(lr);
        }

        // top to down
        for (int j = 0; j < N; j++) {
            vector<int> td(maximum);
            for (int k = 0; k < N; k++) {
                td[players[i][k][j]-1] = 1;
            }
            lines.push_back(td);
        }
        
        // upper left to lower right
        vector<int> ullr(maximum);        
        for (int j = 0; j < N; j++) {
            ullr[players[i][j][j]-1] = 1;
        }
        lines.push_back(ullr);

        // upper right to lower left
        vector<int> urll(maximum);        
        for (int j = 0; j < N; j++) {
            urll[players[i][j][N-j-1]-1] = 1;
        }
        lines.push_back(urll);

        bingos[i] = lines;
    }

    int min_unmatched = 100000000;
    for (int i = 0; i < M; i++) {
        for (int j = i+1; j < M; j++) {
            for (int x = 0; x < 2*N+2; x++) {
                for (int y = 0; y < 2*N+2; y++) {
                    int matched = 0;
                    for (int s = 0; s < maximum; s++) {
                        if (bingos[i][x][s] == 1 && bingos[j][y][s] == 1) {
                            matched++;
                        }
                    }
                    if (matched != 0) {
                        min_unmatched = min(min_unmatched, N-matched);
                    }
                }
            }
        }
    }
    min_unmatched = min(N,min_unmatched);

    cout << N+min_unmatched-1 << endl;
}
0