結果

問題 No.1028 闇討ち
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-18 17:48:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,317 ms / 2,000 ms
コード長 682 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 201,644 KB
最終ジャッジ日時 2024-06-22 14:31:21
合計ジャッジ時間 13,499 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,488 KB
testcase_01 AC 32 ms
52,272 KB
testcase_02 AC 32 ms
52,592 KB
testcase_03 AC 32 ms
53,244 KB
testcase_04 AC 32 ms
53,200 KB
testcase_05 AC 42 ms
62,328 KB
testcase_06 AC 52 ms
66,140 KB
testcase_07 AC 33 ms
53,648 KB
testcase_08 AC 41 ms
60,700 KB
testcase_09 AC 78 ms
79,748 KB
testcase_10 AC 93 ms
79,840 KB
testcase_11 AC 256 ms
99,968 KB
testcase_12 AC 1,146 ms
186,672 KB
testcase_13 AC 1,120 ms
185,492 KB
testcase_14 AC 576 ms
131,604 KB
testcase_15 AC 178 ms
92,916 KB
testcase_16 AC 1,317 ms
200,764 KB
testcase_17 AC 1,279 ms
200,224 KB
testcase_18 AC 1,294 ms
201,032 KB
testcase_19 AC 1,238 ms
201,540 KB
testcase_20 AC 1,250 ms
201,644 KB
testcase_21 AC 1,303 ms
200,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main1(n,a):
  iary=[[] for _ in range(n)]
  ans=0
  for i in range(n):
    for j in range(n):
      iary[a[i][j]-1].append([i,j])
  for v in range(n):
    ary=iary[v]
    mat=[0]*n
    tmp=0
    for x,y in ary:
      # ロスのない場所
      x-y,x+y
      tmp+=y
      if x-y>0:
        cnt=1
        for z in range(x-y-1,-1,-1):
          mat[z]+=cnt
          cnt+=1
      if x+y+1<n:
        cnt=1
        for z in range(x+y+1,n):
          mat[z]+=cnt
          cnt+=1
    tmp+=min(mat)
    ans+=tmp
    #print(v,":",tmp,mat)
  return ans
if __name__=='__main__':
  n=int(input())
  a=[list(map(int,input().split())) for _ in range(n)]
  ret1=main1(n,a)
  print(ret1)
0