結果

問題 No.1028 闇討ち
ユーザー convexineqconvexineq
提出日時 2020-04-17 21:42:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 823 bytes
コンパイル時間 723 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 178,940 KB
最終ジャッジ日時 2024-10-03 11:51:03
合計ジャッジ時間 5,284 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 48 ms
59,264 KB
testcase_06 AC 62 ms
64,896 KB
testcase_07 AC 41 ms
52,736 KB
testcase_08 AC 43 ms
53,504 KB
testcase_09 AC 79 ms
76,928 KB
testcase_10 AC 90 ms
82,048 KB
testcase_11 AC 127 ms
103,168 KB
testcase_12 AC 344 ms
172,192 KB
testcase_13 AC 338 ms
171,776 KB
testcase_14 AC 203 ms
132,608 KB
testcase_15 AC 118 ms
96,896 KB
testcase_16 AC 361 ms
178,856 KB
testcase_17 AC 357 ms
178,224 KB
testcase_18 AC 368 ms
178,940 KB
testcase_19 AC 360 ms
178,808 KB
testcase_20 AC 362 ms
178,808 KB
testcase_21 AC 364 ms
178,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
def kaisa2_of_tousa(a,b,p,q,imos):
    if p > q: return
    imos[p] += b
    if p+1 < n: imos[p+1] += a-b
    y = a*(q-p)+b
    if q+1 < n: imos[q+1] += -y-a
    if q+2 < n: imos[q+2] += y


import sys
sys.setrecursionlimit(10**6)
readline = sys.stdin.readline
read = sys.stdin.read

n,*a = [int(i) for i in read().split()]

res = [[0]*n for _ in range(n)]
for i in range(n):
    ai = a[n*i:n*(i+1)]
    for j,aij in enumerate(ai):
        kaisa2_of_tousa(0,j,0,n-1,res[aij-1])
        if i-j > 0:
            kaisa2_of_tousa(-1,i-j,0,i-j,res[aij-1])
        if i+j < n-1:
            kaisa2_of_tousa(1,0,i+j,n-1,res[aij-1])

from itertools import accumulate as acc
ans = [0]*n
for i in range(n):
    #print(list(acc(acc(res[i]))))
    ans[i] = min(acc(acc(res[i])))

print(sum(ans))





0