結果

問題 No.2064 Smallest Sequence on Grid
ユーザー ygd.ygd.
提出日時 2022-09-02 22:02:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,671 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 144,896 KB
最終ジャッジ日時 2024-11-16 03:29:43
合計ジャッジ時間 10,437 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 36 ms
52,096 KB
testcase_08 AC 37 ms
52,864 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 46 ms
61,696 KB
testcase_14 AC 48 ms
63,104 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 1,707 ms
144,896 KB
testcase_27 WA -
testcase_28 AC 109 ms
84,608 KB
testcase_29 AC 101 ms
83,968 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'
        visited = set([])
        # print(stack)
        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 nidx in visited:
                    continue
                if nv < mn:
                    mn = nv
                    ok = [(nv,nidx)]
                    visited.add(nidx)
                elif v == mn:
                    ok.append((nv,nidx))
                    visited.add(nidx)
        cnt += 1
        ans.append(mn)
        stack = ok
        # print(stack)
    print("".join(ans))

                

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