結果

問題 No.452 横着者のビンゴゲーム
ユーザー kimiyukikimiyuki
提出日時 2016-12-05 03:16:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,144 bytes
コンパイル時間 1,405 ms
コンパイル使用メモリ 89,384 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 20:09:24
合計ジャッジ時間 3,810 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 69 ms
5,376 KB
testcase_15 AC 66 ms
5,376 KB
testcase_16 AC 37 ms
5,376 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 23 ms
5,376 KB
testcase_19 AC 17 ms
5,376 KB
testcase_20 AC 10 ms
5,376 KB
testcase_21 AC 51 ms
5,376 KB
testcase_22 AC 8 ms
5,376 KB
testcase_23 AC 92 ms
5,376 KB
testcase_24 WA -
testcase_25 AC 5 ms
5,376 KB
testcase_26 AC 58 ms
5,376 KB
testcase_27 AC 41 ms
5,376 KB
testcase_28 AC 26 ms
5,376 KB
testcase_29 AC 17 ms
5,376 KB
testcase_30 AC 73 ms
5,376 KB
testcase_31 AC 13 ms
5,376 KB
testcase_32 AC 8 ms
5,376 KB
testcase_33 AC 32 ms
5,376 KB
testcase_34 AC 28 ms
5,376 KB
testcase_35 AC 20 ms
5,376 KB
testcase_36 AC 5 ms
5,376 KB
testcase_37 AC 5 ms
5,376 KB
testcase_38 AC 214 ms
5,376 KB
testcase_39 AC 147 ms
5,376 KB
testcase_40 AC 144 ms
5,376 KB
testcase_41 AC 150 ms
5,376 KB
testcase_42 AC 152 ms
5,376 KB
testcase_43 AC 145 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#define repeat(i,n) for (int i = 0; (i) < (n); ++(i))
#define whole(f,x,...) ([&](decltype((x)) whole) { return (f)(begin(whole), end(whole), ## __VA_ARGS__); })(x)
using namespace std;
template <class T> void setmin(T & a, T const & b) { if (b < a) a = b; }
template <typename X, typename T> auto vectors(X x, T a) { return vector<T>(x, a); }
template <typename X, typename Y, typename Z, typename... Zs> auto vectors(X x, Y y, Z z, Zs... zs) { auto cont = vectors(y, z, zs...); return vector<decltype(cont)>(x, cont); }
int main() {
    int n, m; cin >> n >> m;
    auto c = vectors(m, n, n, int());
    repeat (i,m) repeat (y,n) repeat (x,n) cin >> c[i][y][x];
    vector<vector<vector<int> > > bingo(m);
    repeat (i,m) {
        repeat (y,n) {
            vector<int> row = c[i][y];
            whole(sort, row);
            bingo[i].push_back(row);
        }
        repeat (x,n) {
            vector<int> col(n);
            repeat (y,n) col[y] = c[i][y][x];
            whole(sort, col);
            bingo[i].push_back(col);
        }
        repeat (p,2) {
            vector<int> diag(n);
            repeat (y,n) repeat (x,n) diag[y] = c[i][y][p ? x : n-x-1];
            whole(sort, diag);
            bingo[i].push_back(diag);
        }
        whole(sort, bingo[i]);
    }
    int ans = 2*n-1;
    repeat (i,m) {
        for (auto & x : bingo[i]) {
            repeat (j,i) {
                for (auto & y : bingo[j]) {
                    auto it1 = x.begin();
                    auto it2 = y.begin();
                    int cnt = 0;
                    while (it1 != x.end() and it2 != y.end()) {
                        if (*it1 < *it2) { ++ it1; }
                        else if (*it1 > *it2) { ++ it2; }
                        else { ++ it1; ++ it2; }
                        ++ cnt;
                    }
                    while (it1 != x.end()) { ++ it1; ++ cnt; }
                    while (it2 != y.end()) { ++ it2; ++ cnt; }
                    setmin(ans, cnt-1);
                }
            }
        }
    }
    cout << ans << endl;
    return 0;
}
0