結果

問題 No.1028 闇討ち
ユーザー rkyiolklorkyiolklo
提出日時 2020-04-25 09:58:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,035 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 134,264 KB
最終ジャッジ日時 2024-11-06 18:27:38
合計ジャッジ時間 10,879 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,008 KB
testcase_01 AC 38 ms
54,412 KB
testcase_02 AC 41 ms
57,760 KB
testcase_03 AC 37 ms
52,648 KB
testcase_04 AC 38 ms
54,080 KB
testcase_05 AC 60 ms
69,252 KB
testcase_06 AC 71 ms
73,500 KB
testcase_07 AC 55 ms
65,856 KB
testcase_08 AC 58 ms
67,884 KB
testcase_09 AC 138 ms
78,624 KB
testcase_10 AC 151 ms
80,064 KB
testcase_11 AC 294 ms
87,584 KB
testcase_12 AC 856 ms
129,196 KB
testcase_13 AC 987 ms
129,040 KB
testcase_14 AC 525 ms
103,276 KB
testcase_15 AC 248 ms
85,200 KB
testcase_16 AC 1,035 ms
133,172 KB
testcase_17 AC 952 ms
133,296 KB
testcase_18 AC 924 ms
133,880 KB
testcase_19 AC 1,002 ms
133,756 KB
testcase_20 AC 1,012 ms
134,264 KB
testcase_21 AC 879 ms
133,356 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