結果

問題 No.2064 Smallest Sequence on Grid
ユーザー H20H20
提出日時 2022-09-02 22:27:02
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 764 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 439,936 KB
最終ジャッジ日時 2024-11-16 04:23:46
合計ジャッジ時間 24,971 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,560 KB
testcase_01 AC 37 ms
53,232 KB
testcase_02 AC 37 ms
52,196 KB
testcase_03 AC 37 ms
52,564 KB
testcase_04 RE -
testcase_05 AC 38 ms
52,548 KB
testcase_06 AC 38 ms
52,752 KB
testcase_07 AC 38 ms
52,076 KB
testcase_08 RE -
testcase_09 AC 37 ms
52,560 KB
testcase_10 AC 39 ms
53,968 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 WA -
testcase_14 AC 45 ms
60,352 KB
testcase_15 AC 44 ms
60,344 KB
testcase_16 AC 46 ms
60,632 KB
testcase_17 AC 736 ms
425,572 KB
testcase_18 AC 746 ms
425,344 KB
testcase_19 AC 753 ms
425,344 KB
testcase_20 AC 1,991 ms
436,224 KB
testcase_21 AC 2,171 ms
436,736 KB
testcase_22 AC 1,606 ms
434,624 KB
testcase_23 AC 1,703 ms
435,988 KB
testcase_24 AC 1,693 ms
435,584 KB
testcase_25 AC 1,690 ms
435,456 KB
testcase_26 AC 2,642 ms
439,936 KB
testcase_27 AC 2,679 ms
439,808 KB
testcase_28 AC 753 ms
425,344 KB
testcase_29 WA -
testcase_30 AC 730 ms
401,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int, input().split())
S = []
for _ in range(H):
    S.append(list(input()+'~'))
S.append(list('~'*W))

pos = set()
pos.add(0)
ANS = [S[0][0]]

while len(ANS)<H+W-1:
    alphabet = 'z'
    nextPos = set()
    for xy in list(pos):
        x,y = xy%W,xy//W
        if S[x+1][y]==alphabet:
            nextPos.add(xy+1)
        elif S[x+1][y]<alphabet:
            alphabet = S[x+1][y]
            nextPos = set()
            nextPos.add(xy+1)
        if not xy+W in nextPos:
            if S[x][y+1]==alphabet:
                nextPos.add(xy+W)
            elif S[x][y+1]<alphabet:
                alphabet = S[x][y+1]
                nextPos = set()
                nextPos.add(xy+W)
    ANS.append(alphabet)
    pos = nextPos
print(''.join(map(str, ANS)))
0