結果

問題 No.452 横着者のビンゴゲーム
ユーザー imulanimulan
提出日時 2016-12-03 01:14:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 265 ms / 3,000 ms
コード長 1,625 bytes
コンパイル時間 1,919 ms
コンパイル使用メモリ 178,584 KB
実行使用メモリ 9,812 KB
最終ジャッジ日時 2024-11-28 21:23:11
合計ジャッジ時間 5,796 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 3 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 3 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 3 ms
6,816 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 106 ms
6,816 KB
testcase_15 AC 103 ms
6,820 KB
testcase_16 AC 58 ms
6,820 KB
testcase_17 AC 7 ms
8,216 KB
testcase_18 AC 29 ms
6,816 KB
testcase_19 AC 23 ms
6,816 KB
testcase_20 AC 16 ms
7,776 KB
testcase_21 AC 65 ms
6,816 KB
testcase_22 AC 13 ms
7,932 KB
testcase_23 AC 114 ms
6,820 KB
testcase_24 AC 9 ms
8,104 KB
testcase_25 AC 7 ms
6,816 KB
testcase_26 AC 73 ms
6,816 KB
testcase_27 AC 55 ms
6,816 KB
testcase_28 AC 33 ms
6,816 KB
testcase_29 AC 22 ms
6,820 KB
testcase_30 AC 84 ms
6,816 KB
testcase_31 AC 16 ms
6,820 KB
testcase_32 AC 12 ms
6,816 KB
testcase_33 AC 41 ms
6,816 KB
testcase_34 AC 34 ms
6,820 KB
testcase_35 AC 28 ms
6,816 KB
testcase_36 AC 9 ms
6,820 KB
testcase_37 AC 8 ms
9,812 KB
testcase_38 AC 265 ms
6,816 KB
testcase_39 AC 182 ms
6,820 KB
testcase_40 AC 182 ms
6,820 KB
testcase_41 AC 182 ms
6,816 KB
testcase_42 AC 182 ms
6,820 KB
testcase_43 AC 183 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef long long ll;
#define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i))
#define each(itr,c) for(__typeof(c.begin()) itr=c.begin(); itr!=c.end(); ++itr)
#define all(x) (x).begin(),(x).end()
#define pb push_back
#define fi first
#define se second

int main()
{
    int n,m;
    int c[200][100][100];

    scanf(" %d %d", &n, &m);
    rep(i,m)rep(j,n)rep(k,n) scanf(" %d", &c[i][j][k]);

    vector<vector<int>> bingo[200];
    rep(i,m)
    {
        vector<int> tmp(n);

        // 縦
        rep(j,n)
        {
            rep(k,n) tmp[k]=c[i][k][j];
            sort(all(tmp));
            bingo[i].pb(tmp);
        }
        // 横
        rep(j,n)
        {
            rep(k,n) tmp[k]=c[i][j][k];
            sort(all(tmp));
            bingo[i].pb(tmp);
        }
        //斜め
        rep(j,n) tmp[j]=c[i][j][j];
        sort(all(tmp));
        bingo[i].pb(tmp);
        rep(j,n) tmp[j]=c[i][n-1-j][j];
        sort(all(tmp));
        bingo[i].pb(tmp);
    }

    int ans=123456;
    rep(i,m)rep(j,i)
    {
        rep(a,bingo[i].size())rep(b,bingo[j].size())
        {
            int S=0;
            int x=0,y=0;

            while(x<n && y<n)
            {
                if(bingo[i][a][x] < bingo[j][b][y]) ++x;
                else if(bingo[i][a][x] > bingo[j][b][y]) ++y;
                else
                {
                    ++x;
                    ++y;
                }
                ++S;
            }
            S+=n-x+n-y;
            
            ans=min(ans,S-1);
        }
    }

    if(ans<1) ans=1;
    printf("%d\n", ans);
    return 0;
}
0