結果

問題 No.2064 Smallest Sequence on Grid
ユーザー vwxyzvwxyz
提出日時 2023-01-14 19:42:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,962 ms / 3,000 ms
コード長 1,072 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 151,424 KB
最終ジャッジ日時 2024-06-07 20:10:43
合計ジャッジ時間 25,245 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
89,588 KB
testcase_01 AC 143 ms
89,216 KB
testcase_02 AC 144 ms
89,600 KB
testcase_03 AC 143 ms
89,216 KB
testcase_04 AC 144 ms
89,600 KB
testcase_05 AC 144 ms
89,472 KB
testcase_06 AC 143 ms
89,344 KB
testcase_07 AC 144 ms
89,216 KB
testcase_08 AC 144 ms
89,472 KB
testcase_09 AC 141 ms
89,600 KB
testcase_10 AC 147 ms
89,336 KB
testcase_11 AC 145 ms
89,472 KB
testcase_12 AC 146 ms
89,856 KB
testcase_13 AC 153 ms
89,600 KB
testcase_14 AC 156 ms
89,856 KB
testcase_15 AC 153 ms
89,984 KB
testcase_16 AC 154 ms
90,496 KB
testcase_17 AC 245 ms
100,480 KB
testcase_18 AC 231 ms
100,224 KB
testcase_19 AC 227 ms
100,096 KB
testcase_20 AC 2,084 ms
128,896 KB
testcase_21 AC 2,184 ms
133,120 KB
testcase_22 AC 1,437 ms
116,352 KB
testcase_23 AC 1,528 ms
125,440 KB
testcase_24 AC 1,568 ms
125,952 KB
testcase_25 AC 1,577 ms
126,676 KB
testcase_26 AC 2,962 ms
151,040 KB
testcase_27 AC 2,928 ms
151,424 KB
testcase_28 AC 239 ms
100,096 KB
testcase_29 AC 2,402 ms
135,548 KB
testcase_30 AC 242 ms
99,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import random
import sys
import time
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines
write=sys.stdout.write

H,W=map(int,readline().split())
S=[readline().rstrip() for h in range(H)]
ans_lst=[S[0][0]]
queue=[(0,0)]
for _ in range(H+W-2):
    s=min([S[h+1][w] for h,w in queue if h+1<H]+[S[h][w+1] for h,w in queue if w+1<W])
    ans_lst.append(s)
    queue=list({(h+1,w) for h,w in queue if h+1<H and S[h+1][w]==s}|{(h,w+1) for h,w in queue if w+1<W and S[h][w+1]==s})
print(*ans_lst,sep="")
0