結果

問題 No.1028 闇討ち
ユーザー koba-e964koba-e964
提出日時 2020-04-26 01:56:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 389 ms / 2,000 ms
コード長 777 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 153,684 KB
最終ジャッジ日時 2024-04-26 04:15:55
合計ジャッジ時間 5,645 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,340 KB
testcase_01 AC 36 ms
52,884 KB
testcase_02 AC 35 ms
52,444 KB
testcase_03 AC 36 ms
52,876 KB
testcase_04 AC 37 ms
52,284 KB
testcase_05 AC 39 ms
53,748 KB
testcase_06 AC 53 ms
66,396 KB
testcase_07 AC 38 ms
52,948 KB
testcase_08 AC 39 ms
53,764 KB
testcase_09 AC 76 ms
77,820 KB
testcase_10 AC 82 ms
78,496 KB
testcase_11 AC 122 ms
86,000 KB
testcase_12 AC 329 ms
139,116 KB
testcase_13 AC 337 ms
139,008 KB
testcase_14 AC 208 ms
102,840 KB
testcase_15 AC 114 ms
82,304 KB
testcase_16 AC 389 ms
153,600 KB
testcase_17 AC 378 ms
153,472 KB
testcase_18 AC 383 ms
153,684 KB
testcase_19 AC 371 ms
153,600 KB
testcase_20 AC 379 ms
153,588 KB
testcase_21 AC 375 ms
153,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import sys
readline = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

# editorial
n = int(readline())
occ = [[] for _ in range(n)]
for i in range(n):
    aa = list(map(int, readline().split()))
    for j in range(n):
        occ[aa[j] - 1].append((i, j))

tot = 0
for i in range(n):
    a = [0] * n
    b = [0] * (n + 1)
    for (x, y) in occ[i]:
        a[0] += max(x, y)
        if x - y >= 1:
            b[1] -= 1
            b[x - y + 1] += 1
        if x + y + 1 < n:
            b[x + y + 1] += 1
    for i in range(n - 1):
        b[i + 1] += b[i]
    for i in range(n):
        a[i] += b[i]
    for i in range(n - 1):
        a[i + 1] += a[i]
    mi = n * n
    for i in range(n):
        mi = min(mi, a[i])
    tot += mi

print(tot)
0