結果

問題 No.2064 Smallest Sequence on Grid
ユーザー とりゐとりゐ
提出日時 2021-08-10 05:06:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,778 ms / 3,000 ms
コード長 533 bytes
コンパイル時間 560 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 162,768 KB
最終ジャッジ日時 2024-04-27 20:13:53
合計ジャッジ時間 17,974 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,784 KB
testcase_01 AC 40 ms
54,416 KB
testcase_02 AC 40 ms
55,128 KB
testcase_03 AC 40 ms
54,848 KB
testcase_04 AC 41 ms
55,184 KB
testcase_05 AC 40 ms
53,436 KB
testcase_06 AC 41 ms
54,116 KB
testcase_07 AC 42 ms
55,120 KB
testcase_08 AC 47 ms
60,860 KB
testcase_09 AC 48 ms
61,160 KB
testcase_10 AC 49 ms
62,300 KB
testcase_11 AC 55 ms
65,736 KB
testcase_12 AC 55 ms
65,088 KB
testcase_13 AC 61 ms
67,480 KB
testcase_14 AC 60 ms
67,396 KB
testcase_15 AC 58 ms
66,164 KB
testcase_16 AC 59 ms
66,508 KB
testcase_17 AC 409 ms
156,660 KB
testcase_18 AC 411 ms
156,816 KB
testcase_19 AC 409 ms
156,648 KB
testcase_20 AC 1,407 ms
161,440 KB
testcase_21 AC 1,503 ms
162,168 KB
testcase_22 AC 1,158 ms
159,272 KB
testcase_23 AC 1,050 ms
160,100 KB
testcase_24 AC 1,061 ms
160,312 KB
testcase_25 AC 1,048 ms
160,292 KB
testcase_26 AC 1,765 ms
162,624 KB
testcase_27 AC 1,778 ms
162,768 KB
testcase_28 AC 420 ms
156,636 KB
testcase_29 AC 1,456 ms
148,932 KB
testcase_30 AC 391 ms
150,844 KB
権限があれば一括ダウンロードができます

ソースコード

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 y in range(max(0,i-h+1),min(i+1,w)):
    x=i-y
    #print(i,x,y)
    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