結果
問題 | No.2064 Smallest Sequence on Grid |
ユーザー | first_vil |
提出日時 | 2022-09-02 21:41:16 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,049 bytes |
コンパイル時間 | 267 ms |
コンパイル使用メモリ | 82,372 KB |
実行使用メモリ | 519,344 KB |
最終ジャッジ日時 | 2024-11-16 02:51:05 |
合計ジャッジ時間 | 51,782 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
54,676 KB |
testcase_01 | AC | 38 ms
52,724 KB |
testcase_02 | AC | 38 ms
53,828 KB |
testcase_03 | AC | 38 ms
53,548 KB |
testcase_04 | AC | 38 ms
52,512 KB |
testcase_05 | AC | 38 ms
53,200 KB |
testcase_06 | AC | 38 ms
53,204 KB |
testcase_07 | AC | 39 ms
53,932 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | MLE | - |
testcase_29 | TLE | - |
testcase_30 | MLE | - |
ソースコード
from math import gcd import sys int1 = lambda x: int(x) - 1 # input = lambda: sys.stdin.buffer.readline() input = lambda: sys.stdin.readline().rstrip() ii = lambda: int(input()) i1 = lambda: int1(input()) mi = lambda: map(int, input().split()) mi1 = lambda: map(int1, input().split()) li = lambda: list(mi()) li1 = lambda: list(mi1()) lli = lambda n: [li() for _ in range(n)] INF = float("inf") mod = int(1e9 + 7) # mod = 998244353 h, w = mi() s = [input() for i in range(h)] ans = [s[0][0]] e = chr(ord("z") + 1) d = [list() for i in range(h + w - 1)] for y in range(h): for x in range(w): d[y + x].append((y, x)) f = [[False] * w for i in range(h)] f[0][0] = True for i in range(h + w - 2): mn = e for y, x in d[i]: if not f[y][x]: continue if y + 1 < h and mn > s[y + 1][x]: mn = s[y + 1][x] if x + 1 < w and mn > s[y][x + 1]: mn = s[y][x + 1] ans.append(mn) for y, x in d[i + 1]: if s[y][x] == mn: f[y][x] = True print("".join(ans))