結果

問題 No.1028 闇討ち
ユーザー brthyyjpbrthyyjp
提出日時 2022-02-21 10:36:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 1,017 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 139,204 KB
最終ジャッジ日時 2024-06-29 14:44:16
合計ジャッジ時間 5,943 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
55,252 KB
testcase_01 AC 35 ms
54,580 KB
testcase_02 AC 35 ms
54,528 KB
testcase_03 AC 36 ms
54,600 KB
testcase_04 AC 36 ms
54,320 KB
testcase_05 AC 41 ms
61,488 KB
testcase_06 AC 55 ms
69,176 KB
testcase_07 AC 37 ms
54,848 KB
testcase_08 AC 40 ms
62,500 KB
testcase_09 AC 80 ms
78,408 KB
testcase_10 AC 87 ms
79,988 KB
testcase_11 AC 130 ms
87,344 KB
testcase_12 AC 321 ms
131,384 KB
testcase_13 AC 310 ms
131,356 KB
testcase_14 AC 201 ms
103,540 KB
testcase_15 AC 120 ms
85,500 KB
testcase_16 AC 348 ms
138,164 KB
testcase_17 AC 341 ms
138,172 KB
testcase_18 AC 337 ms
138,824 KB
testcase_19 AC 337 ms
138,940 KB
testcase_20 AC 337 ms
139,204 KB
testcase_21 AC 340 ms
138,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

from itertools import accumulate
from collections import defaultdict
INF = 10**18

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

D = defaultdict(lambda: [])
for x in range(n):
    for y in range(n):
        a = A[x][y]
        D[a-1].append((x, y))

ans = 0
for a in range(n):
    imos = [0]*(n+1)
    imos1 = [0]*(n+1)
    imos2 = [0]*(n+1)
    for x, y in D[a]:
        imos1[0] += 1
        imos1[max(0, x-y)] -= 1
        imos2[min(x+y+1, n)] += 1
        imos2[n] -= 1
    imos1 = list(accumulate(imos1))
    imos2 = list(accumulate(imos2))
    for i in range(n, 0, -1):
        imos1[i-1] += imos1[i]
    for i in range(n):
        imos2[i+1] += imos2[i]
    for i in range(n):
        imos[i] = imos1[i]+imos2[i]
    pos = -1
    M = INF
    for i in range(n):
        if M > imos[i]:
            M = imos[i]
            pos = i
    for x, y in D[a]:
        ans += max(abs(x-pos), y)
print(ans)
0