結果

問題 No.1028 闇討ち
ユーザー freecss00freecss00
提出日時 2020-04-17 22:23:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 935 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 134,524 KB
最終ジャッジ日時 2024-10-03 13:52:53
合計ジャッジ時間 9,916 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,736 KB
testcase_01 AC 33 ms
52,608 KB
testcase_02 AC 36 ms
57,344 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 35 ms
52,480 KB
testcase_05 AC 53 ms
67,968 KB
testcase_06 AC 63 ms
74,112 KB
testcase_07 AC 50 ms
64,512 KB
testcase_08 AC 55 ms
67,328 KB
testcase_09 AC 133 ms
78,720 KB
testcase_10 AC 137 ms
80,248 KB
testcase_11 AC 263 ms
87,720 KB
testcase_12 AC 744 ms
129,184 KB
testcase_13 AC 869 ms
128,932 KB
testcase_14 AC 467 ms
103,296 KB
testcase_15 AC 210 ms
85,120 KB
testcase_16 AC 935 ms
133,624 KB
testcase_17 AC 811 ms
133,164 KB
testcase_18 AC 811 ms
133,904 KB
testcase_19 AC 884 ms
133,888 KB
testcase_20 AC 859 ms
134,524 KB
testcase_21 AC 761 ms
133,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [list(map(lambda a:int(a)-1, input().split())) for _ in range(n)]
h = [[] for _ in range(n)]
for i in range(n):
    for j in range(n):
        h[a[i][j]].append((i,j))

ans = 0
for i in range(n):
    fn = lambda p: sum([max(abs(p - pi), pj) for pi, pj in h[i]])
    l, r = 0, n-1
    for _ in range(20):
        a = (l*2 + r) // 3
        b = (l + r*2) // 3
        if fn(a) > fn(b):
            l = a
        else:
            r = b
    ans += min(fn(a), fn(b))
print(ans)
0