結果

問題 No.1028 闇討ち
ユーザー AEnAEn
提出日時 2022-12-03 15:31:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 1,044 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 93,824 KB
最終ジャッジ日時 2024-10-10 17:54:08
合計ジャッジ時間 5,342 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 40 ms
53,120 KB
testcase_06 AC 53 ms
63,872 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 AC 40 ms
52,992 KB
testcase_09 AC 69 ms
73,984 KB
testcase_10 AC 81 ms
77,312 KB
testcase_11 AC 111 ms
78,592 KB
testcase_12 AC 242 ms
92,160 KB
testcase_13 AC 236 ms
88,448 KB
testcase_14 AC 178 ms
84,736 KB
testcase_15 AC 102 ms
79,360 KB
testcase_16 AC 249 ms
93,568 KB
testcase_17 AC 248 ms
93,568 KB
testcase_18 AC 263 ms
93,824 KB
testcase_19 AC 261 ms
93,568 KB
testcase_20 AC 259 ms
93,440 KB
testcase_21 AC 259 ms
93,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [list(map(int, input().split())) for _ in range(N)]

acc = [[0]*(N+1) for _ in range(N)]
cost = [0]*N
for i in range(N):
    for j in range(N):
        id = A[i][j]-1
        cost[id] += max(i,j)
        if i==0:
            if j+1<=N:
                acc[id][j+1] += 1
                acc[id][-1] -= 1
        elif j==0:
            acc[id][1] -= 1
            acc[id][i+1] += 1
            acc[id][i+1] += 1
            acc[id][-1] -= 1
        elif i==j:
            if i*2+1<=N:
                acc[id][i*2+1] += 1
                acc[id][-1] -= 1
        elif i>j:
            acc[id][1] -= 1
            acc[id][i-j+1] += 1
            if i+j+1<=N:
                acc[id][i+j+1] += 1
                acc[id][-1] -= 1
        else:
            if i+j+1<=N:
                acc[id][i+j+1] += 1
                acc[id][-1] -= 1
res = 0
for i in range(N):
    for j in range(N):
        acc[i][j+1] += acc[i][j]
    for j in range(N):
        acc[i][j+1] += acc[i][j]
    res += cost[i]+min(acc[i][:-1])
print(res)
    
0