結果

問題 No.2064 Smallest Sequence on Grid
ユーザー ygd.ygd.
提出日時 2022-09-02 21:52:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,482 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 849,712 KB
最終ジャッジ日時 2024-11-16 03:12:49
合計ジャッジ時間 39,121 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,808 KB
testcase_01 AC 36 ms
52,180 KB
testcase_02 AC 35 ms
52,376 KB
testcase_03 AC 34 ms
53,356 KB
testcase_04 AC 34 ms
53,160 KB
testcase_05 AC 35 ms
52,236 KB
testcase_06 AC 38 ms
53,224 KB
testcase_07 AC 36 ms
53,164 KB
testcase_08 AC 37 ms
52,520 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 54 ms
75,736 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 MLE -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 MLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 143 ms
84,356 KB
testcase_29 AC 111 ms
81,444 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
#input = sys.stdin.buffer.readline #文字列はダメ
#sys.setrecursionlimit(1000000)
#import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
#from collections import defaultdict 
#from collections import deque
#import copy #DeepCopy: hoge = [_[:] for _ in hogehoge]
#import math
#from functools import lru_cache
#@lru_cache(maxsize=None)
#MOD = pow(10,9) + 7
MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]
#dx8 = [1,1,0,-1,-1,-1,0,1]
#dy8 = [0,1,1,1,0,-1,-1,-1]

def main():
    H,W = map(int,input().split())
    S = [input() for _ in range(H)]

    ans = [S[0][0]]
    stack = []
    stack.append((S[0][0],0))
    cnt = 0
    while cnt < H+W-2:
        mn = 'zz'
        while stack:
            v,idx = stack.pop()
            x = idx//W
            y = idx%W
            for i in range(2):
                if i == 0:
                    if x+1 >= H: continue
                    nv = S[x+1][y]
                    nidx = (x+1)*W + y
                else:
                    if y+1 >= W: continue
                    nv = S[x][y+1]
                    nidx = x*W + y+1
                if nv < mn:
                    mn = nv
                    ok = [(nv,nidx)] 
                elif v == mn:
                    ok.append((nv,nidx))
        cnt += 1
        ans.append(mn)
        stack = ok
        # print(stack)
    print("".join(ans))

                

if __name__ == '__main__':
    main()
0