結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,904 KB
testcase_01 AC 39 ms
52,744 KB
testcase_02 AC 39 ms
52,472 KB
testcase_03 AC 38 ms
53,288 KB
testcase_04 AC 38 ms
53,276 KB
testcase_05 AC 50 ms
62,060 KB
testcase_06 AC 54 ms
65,356 KB
testcase_07 AC 45 ms
60,156 KB
testcase_08 AC 50 ms
61,996 KB
testcase_09 AC 90 ms
77,552 KB
testcase_10 AC 100 ms
78,392 KB
testcase_11 AC 215 ms
86,232 KB
testcase_12 AC 653 ms
140,124 KB
testcase_13 AC 647 ms
139,412 KB
testcase_14 AC 384 ms
103,672 KB
testcase_15 AC 174 ms
84,364 KB
testcase_16 AC 761 ms
154,072 KB
testcase_17 AC 725 ms
153,744 KB
testcase_18 AC 721 ms
154,564 KB
testcase_19 AC 748 ms
153,980 KB
testcase_20 AC 769 ms
154,164 KB
testcase_21 AC 699 ms
154,156 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