結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 43 ms
52,096 KB
testcase_03 AC 43 ms
51,840 KB
testcase_04 AC 44 ms
52,096 KB
testcase_05 AC 45 ms
53,248 KB
testcase_06 AC 65 ms
64,768 KB
testcase_07 AC 45 ms
52,096 KB
testcase_08 AC 46 ms
52,992 KB
testcase_09 AC 93 ms
77,568 KB
testcase_10 AC 101 ms
78,336 KB
testcase_11 AC 145 ms
86,272 KB
testcase_12 AC 370 ms
139,136 KB
testcase_13 AC 364 ms
138,624 KB
testcase_14 AC 226 ms
102,912 KB
testcase_15 AC 126 ms
81,792 KB
testcase_16 AC 413 ms
153,600 KB
testcase_17 AC 406 ms
153,088 KB
testcase_18 AC 407 ms
153,344 KB
testcase_19 AC 410 ms
153,472 KB
testcase_20 AC 419 ms
153,728 KB
testcase_21 AC 401 ms
153,600 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