結果

問題 No.1028 闇討ち
ユーザー vwxyzvwxyz
提出日時 2024-07-17 05:34:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 390 ms / 2,000 ms
コード長 647 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 132,352 KB
最終ジャッジ日時 2024-07-17 05:34:35
合計ジャッジ時間 5,254 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 42 ms
51,968 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 42 ms
58,624 KB
testcase_06 AC 52 ms
63,488 KB
testcase_07 AC 40 ms
52,480 KB
testcase_08 AC 42 ms
58,624 KB
testcase_09 AC 88 ms
77,568 KB
testcase_10 AC 80 ms
78,336 KB
testcase_11 AC 125 ms
85,632 KB
testcase_12 AC 336 ms
128,000 KB
testcase_13 AC 324 ms
126,976 KB
testcase_14 AC 196 ms
101,760 KB
testcase_15 AC 131 ms
80,512 KB
testcase_16 AC 342 ms
131,968 KB
testcase_17 AC 338 ms
132,352 KB
testcase_18 AC 341 ms
131,968 KB
testcase_19 AC 390 ms
132,224 KB
testcase_20 AC 358 ms
132,096 KB
testcase_21 AC 339 ms
131,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=[list(map(int,input().split())) for i in range(N)]
idx=[[] for a in range(N)]
for i in range(N):
    for j in range(N):
        A[i][j]-=1
        idx[A[i][j]].append((i,j))
ans=N*(N-1)//2*N
for a in range(N):
    imos=[0]*(N+2)
    for i,j in idx[a]:
        l,r=i-j,i+j
        if 0<l:
            imos[0]+=l
            imos[1]-=l
            imos[1]+=-1
            imos[l+1]-=-1
        if r<N-1:
            imos[r+1]+=1
            imos[N]-=1
            imos[N]+=-(N-r-1)
            imos[N+1]-=-(N-r-1)
    for _ in range(2):
        for i in range(1,N+2):
            imos[i]+=imos[i-1]
    ans+=min(imos[:N])
print(ans)
0