結果

問題 No.1028 闇討ち
ユーザー koba-e964koba-e964
提出日時 2020-04-26 01:39:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 792 ms / 2,000 ms
コード長 782 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 154,112 KB
最終ジャッジ日時 2024-11-08 14:39:33
合計ジャッジ時間 10,002 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 41 ms
51,712 KB
testcase_05 AC 56 ms
61,824 KB
testcase_06 AC 61 ms
65,024 KB
testcase_07 AC 51 ms
59,392 KB
testcase_08 AC 56 ms
61,568 KB
testcase_09 AC 103 ms
77,312 KB
testcase_10 AC 115 ms
78,464 KB
testcase_11 AC 225 ms
86,016 KB
testcase_12 AC 676 ms
139,776 KB
testcase_13 AC 664 ms
139,264 KB
testcase_14 AC 398 ms
103,552 KB
testcase_15 AC 187 ms
84,224 KB
testcase_16 AC 784 ms
154,112 KB
testcase_17 AC 729 ms
153,728 KB
testcase_18 AC 752 ms
153,856 KB
testcase_19 AC 759 ms
153,856 KB
testcase_20 AC 792 ms
154,112 KB
testcase_21 AC 735 ms
153,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

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

def f(occ, x):
    tot = 0
    for (i, j) in occ:
        tot += max(abs(i - x), j)
    return tot


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):
    occ[i].sort()
    lo = 0
    hi = n - 1
    while hi - lo > 2:
        mid1 = (hi + lo) // 2
        mid2 = mid1 + 1
        val1 = f(occ[i], mid1)
        val2 = f(occ[i], mid2)
        if val1 < val2:
            hi = mid2
        else:
            lo = mid1
    mi = 10000000
    for j in range(lo, hi + 1):
        mi = min(mi, f(occ[i], j))
    tot += mi

print(tot)
0