結果

問題 No.2064 Smallest Sequence on Grid
ユーザー とりゐとりゐ
提出日時 2021-08-10 04:55:33
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 515 bytes
コンパイル時間 507 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 163,072 KB
最終ジャッジ日時 2024-11-16 01:30:07
合計ジャッジ時間 20,925 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,632 KB
testcase_01 RE -
testcase_02 AC 45 ms
53,760 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 47 ms
53,504 KB
testcase_06 AC 46 ms
53,632 KB
testcase_07 AC 46 ms
53,632 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 480 ms
156,928 KB
testcase_18 AC 469 ms
156,800 KB
testcase_19 AC 462 ms
157,184 KB
testcase_20 AC 1,572 ms
162,048 KB
testcase_21 AC 1,668 ms
162,048 KB
testcase_22 AC 1,264 ms
159,600 KB
testcase_23 AC 1,204 ms
160,256 KB
testcase_24 AC 1,206 ms
160,128 KB
testcase_25 AC 1,201 ms
160,000 KB
testcase_26 AC 2,038 ms
162,688 KB
testcase_27 AC 2,026 ms
163,072 KB
testcase_28 AC 470 ms
156,928 KB
testcase_29 RE -
testcase_30 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
h,w=map(int,input().split())
s=[]
for i in range(h):
  s.append(input())
a=[[0]*w for i in range(h)]
a[0][0]=1
dxdy=[(0,1),(1,0)]
ans=[]
for i in range(h+w-1):
  d=defaultdict(list)
  t=set()
  for x in range(max(0,i-h+1),min(i+1,w)):
    y=i-x
    if a[x][y]==1:
      d[s[x][y]].append((x,y))
      t.add(s[x][y])
  t=sorted(list(t))
  u=t[0]
  ans.append(u)
  for x,y in d[u]:
    for dx,dy in dxdy:
      if 0<=x+dx<h and 0<=y+dy<w:
        a[x+dx][y+dy]=1
print(*ans,sep='')
0