結果
問題 | No.2064 Smallest Sequence on Grid |
ユーザー | Akari |
提出日時 | 2022-09-02 22:33:43 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,012 bytes |
コンパイル時間 | 356 ms |
コンパイル使用メモリ | 82,096 KB |
実行使用メモリ | 642,308 KB |
最終ジャッジ日時 | 2024-11-16 04:41:42 |
合計ジャッジ時間 | 79,341 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
60,252 KB |
testcase_01 | AC | 38 ms
472,060 KB |
testcase_02 | AC | 37 ms
60,516 KB |
testcase_03 | AC | 37 ms
445,208 KB |
testcase_04 | AC | 37 ms
59,624 KB |
testcase_05 | MLE | - |
testcase_06 | AC | 37 ms
60,796 KB |
testcase_07 | AC | 38 ms
441,480 KB |
testcase_08 | AC | 38 ms
59,988 KB |
testcase_09 | AC | 38 ms
439,804 KB |
testcase_10 | AC | 40 ms
60,548 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | MLE | - |
testcase_20 | TLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | AC | 164 ms
171,828 KB |
testcase_29 | MLE | - |
testcase_30 | TLE | - |
ソースコード
def main(): h, w = map(int, input().split()) A = ''.join([input() for _ in range(h)]) d = {A[0][0]: [0]} B = [0] * (h * w) for _ in range(h + w - 1): s = min(d) q = [k for k in d[s]] d.clear() while q: k = q.pop() B[k] = 1 i, j = divmod(k, w) if i < h - 1: ni = (i + 1) * w + j a = A[ni] if a in d: d[a].append(ni) else: d[a] = [ni] if j < w - 1: nj = i * w + (j + 1) a = A[nj] if a in d: d[a].append(nj) else: d[a] = [nj] ans = [] i, j = h - 1, w - 1 for _ in range(h + w - 1): ans.append(A[i * w + j]) if i > 0 and B[(i - 1) * w + j]: i -= 1 else: j -= 1 print(''.join(reversed(ans))) if __name__ == '__main__': main()