結果

問題 No.2064 Smallest Sequence on Grid
ユーザー vwxyzvwxyz
提出日時 2022-09-22 01:14:27
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,072 bytes
コンパイル時間 776 ms
コンパイル使用メモリ 81,940 KB
実行使用メモリ 151,468 KB
最終ジャッジ日時 2024-12-22 04:34:00
合計ジャッジ時間 25,933 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
89,600 KB
testcase_01 AC 138 ms
89,356 KB
testcase_02 AC 146 ms
89,348 KB
testcase_03 AC 138 ms
89,144 KB
testcase_04 AC 137 ms
89,340 KB
testcase_05 AC 142 ms
89,472 KB
testcase_06 AC 137 ms
89,472 KB
testcase_07 AC 138 ms
89,412 KB
testcase_08 AC 144 ms
89,432 KB
testcase_09 AC 139 ms
89,388 KB
testcase_10 AC 143 ms
89,600 KB
testcase_11 AC 145 ms
89,804 KB
testcase_12 AC 147 ms
89,648 KB
testcase_13 AC 152 ms
89,772 KB
testcase_14 AC 155 ms
90,100 KB
testcase_15 AC 152 ms
90,068 KB
testcase_16 AC 153 ms
90,076 KB
testcase_17 AC 235 ms
100,124 KB
testcase_18 AC 215 ms
99,880 KB
testcase_19 AC 222 ms
100,636 KB
testcase_20 AC 2,110 ms
128,712 KB
testcase_21 AC 2,275 ms
133,200 KB
testcase_22 AC 1,461 ms
116,680 KB
testcase_23 AC 1,663 ms
125,696 KB
testcase_24 AC 1,651 ms
126,464 KB
testcase_25 AC 1,612 ms
126,016 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 244 ms
100,252 KB
testcase_29 AC 2,447 ms
135,148 KB
testcase_30 AC 242 ms
99,932 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