結果

問題 No.452 横着者のビンゴゲーム
ユーザー hirokazu1020hirokazu1020
提出日時 2016-12-03 18:31:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 311 ms / 3,000 ms
コード長 1,075 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 19,428 KB
最終ジャッジ日時 2024-11-28 23:15:35
合計ジャッジ時間 5,369 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,496 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 35 ms
10,752 KB
testcase_04 AC 33 ms
10,752 KB
testcase_05 AC 36 ms
10,624 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 32 ms
10,880 KB
testcase_08 AC 34 ms
10,624 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 32 ms
10,624 KB
testcase_11 AC 32 ms
10,496 KB
testcase_12 AC 31 ms
10,496 KB
testcase_13 AC 32 ms
10,880 KB
testcase_14 AC 228 ms
19,292 KB
testcase_15 AC 225 ms
19,428 KB
testcase_16 AC 127 ms
15,180 KB
testcase_17 AC 40 ms
10,752 KB
testcase_18 AC 76 ms
11,776 KB
testcase_19 AC 56 ms
11,264 KB
testcase_20 AC 50 ms
10,880 KB
testcase_21 AC 127 ms
12,672 KB
testcase_22 AC 47 ms
10,880 KB
testcase_23 AC 186 ms
14,076 KB
testcase_24 AC 44 ms
11,008 KB
testcase_25 AC 41 ms
10,752 KB
testcase_26 AC 117 ms
12,416 KB
testcase_27 AC 81 ms
11,904 KB
testcase_28 AC 82 ms
11,648 KB
testcase_29 AC 59 ms
11,136 KB
testcase_30 AC 141 ms
12,928 KB
testcase_31 AC 55 ms
11,136 KB
testcase_32 AC 47 ms
11,136 KB
testcase_33 AC 72 ms
11,264 KB
testcase_34 AC 75 ms
11,648 KB
testcase_35 AC 60 ms
11,392 KB
testcase_36 AC 44 ms
10,880 KB
testcase_37 AC 42 ms
10,752 KB
testcase_38 AC 311 ms
16,496 KB
testcase_39 AC 210 ms
14,364 KB
testcase_40 AC 214 ms
14,376 KB
testcase_41 AC 211 ms
14,624 KB
testcase_42 AC 210 ms
14,620 KB
testcase_43 AC 214 ms
14,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int, input().split())
ans = 2*n-1
idx={}
val =[[] for j in range(m*(2*n+2))]
cnt = [0]*(m*(2*n+2))

for i in range(m):
    b = i*(2*n+2);
    for y in range(n):
        row = input().split()
        for x in range(n):
            c = int(row[x])
            if not c in idx:
                idx[c]=[]
            idx[c].append(b + y)
            val[b + y].append(c)
            idx[c].append(b + n + x)
            val[b + n + x].append(c)
            if y==x:
                idx[c].append(b+2*n)
                val[b+2*n].append(c)
            if n-1-y==x:
                idx[c].append(b+2*n+1)
                val[b+2*n+1].append(c)
for i in range(m):
    for j in range(2*n+2):
        for v in val[i*(2*n+2) + j]:
            for k in idx[v]:
                if not (i*(2*n+2) <= k and k < (i+1)*(2*n+2)):
                    cnt[k] += 1
                    ans = min(ans, 2*n-cnt[k]-1)
        for v in val[i*(2*n+2) + j]:
            for k in idx[v]:
                if not (i*(2*n+2) <= k and k < (i+1)*(2*n+2)):
                    cnt[k] -= 1
print(ans)
0