結果

問題 No.1028 闇討ち
ユーザー hedwig100hedwig100
提出日時 2020-04-18 10:41:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 960 ms / 2,000 ms
コード長 940 bytes
コンパイル時間 460 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 134,972 KB
最終ジャッジ日時 2024-10-03 23:08:38
合計ジャッジ時間 10,893 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
55,808 KB
testcase_01 AC 47 ms
55,936 KB
testcase_02 AC 50 ms
61,952 KB
testcase_03 AC 47 ms
56,064 KB
testcase_04 AC 47 ms
55,804 KB
testcase_05 AC 61 ms
65,920 KB
testcase_06 AC 67 ms
70,400 KB
testcase_07 AC 56 ms
65,024 KB
testcase_08 AC 59 ms
66,304 KB
testcase_09 AC 105 ms
78,208 KB
testcase_10 AC 118 ms
78,080 KB
testcase_11 AC 277 ms
87,680 KB
testcase_12 AC 903 ms
128,000 KB
testcase_13 AC 793 ms
128,128 KB
testcase_14 AC 537 ms
102,192 KB
testcase_15 AC 201 ms
84,224 KB
testcase_16 AC 937 ms
134,144 KB
testcase_17 AC 834 ms
134,144 KB
testcase_18 AC 886 ms
134,656 KB
testcase_19 AC 893 ms
134,664 KB
testcase_20 AC 957 ms
134,972 KB
testcase_21 AC 960 ms
134,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 10 ** 20
MOD = 10 ** 9 + 7
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)
from  heapq import heappop,heapify,heappush
from bisect import bisect_left
from functools import reduce
from math import gcd

def tot(x,idx):
    ret = 0
    for i in idx:
        ret += max(i[1],abs(i[0] - x))
    return ret

def main():
    n = int(input())
    a = [list(map(int,input().split())) for _ in range(n)]

    idx = [[] for _ in range(n)]
    for i in range(n):
        for j in range(n):
            p = a[i][j] - 1
            idx[p].append((i,j))
    
    ans = 0
    for i in range(n):
        idxs = idx[i]
        l = 0
        r = n
        for _ in range(30):
            mid = (r + l)//2
            if tot(mid - 1,idxs) < tot(mid,idxs):
                r = mid
            else:
                l = mid
        tmp = tot(l,idxs)
        ans += tmp
    
    print(ans)

if __name__ == '__main__':
    main()
0