結果

問題 No.2731 Two Colors
ユーザー 👑 rin204rin204
提出日時 2024-04-20 01:20:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,524 ms / 3,000 ms
コード長 846 bytes
コンパイル時間 545 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 119,864 KB
最終ジャッジ日時 2024-10-11 20:10:38
合計ジャッジ時間 17,773 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,513 ms
119,296 KB
testcase_01 AC 1,524 ms
119,864 KB
testcase_02 AC 1,517 ms
119,296 KB
testcase_03 AC 96 ms
77,184 KB
testcase_04 AC 129 ms
78,976 KB
testcase_05 AC 127 ms
78,592 KB
testcase_06 AC 221 ms
82,944 KB
testcase_07 AC 195 ms
83,776 KB
testcase_08 AC 102 ms
77,184 KB
testcase_09 AC 440 ms
104,024 KB
testcase_10 AC 91 ms
77,216 KB
testcase_11 AC 845 ms
110,528 KB
testcase_12 AC 432 ms
104,180 KB
testcase_13 AC 688 ms
105,600 KB
testcase_14 AC 267 ms
88,592 KB
testcase_15 AC 115 ms
76,760 KB
testcase_16 AC 356 ms
89,364 KB
testcase_17 AC 396 ms
93,568 KB
testcase_18 AC 152 ms
79,136 KB
testcase_19 AC 378 ms
89,700 KB
testcase_20 AC 276 ms
93,060 KB
testcase_21 AC 165 ms
79,384 KB
testcase_22 AC 613 ms
107,484 KB
testcase_23 AC 231 ms
83,840 KB
testcase_24 AC 157 ms
79,388 KB
testcase_25 AC 106 ms
76,800 KB
testcase_26 AC 426 ms
100,608 KB
testcase_27 AC 539 ms
106,088 KB
testcase_28 AC 495 ms
97,516 KB
testcase_29 AC 208 ms
81,956 KB
testcase_30 AC 263 ms
86,272 KB
testcase_31 AC 249 ms
83,456 KB
testcase_32 AC 841 ms
117,880 KB
testcase_33 AC 38 ms
52,224 KB
testcase_34 AC 38 ms
52,736 KB
testcase_35 AC 38 ms
52,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

h, w = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(h)]

hq1 = [(A[0][0], 0, 0)]
hq2 = [(A[h - 1][w - 1], h - 1, w - 1)]
used = [[False] * w for _ in range(h)]
used1 = [[False] * w for _ in range(h)]
used2 = [[False] * w for _ in range(h)]
ans = 0
used1[0][0] = True
used2[h - 1][w - 1] = True

di = [1, 0, -1, 0]
dj = [0, 1, 0, -1]

while 1:
    ans += 1
    a, i, j = heappop(hq1)
    used[i][j] = True
    for k in range(4):
        ni, nj = i + di[k], j + dj[k]
        if ni == -1 or ni == h or nj == -1 or nj == w:
            continue
        if not used1[ni][nj]:
            if used[ni][nj]:
                print(ans - 2)
                exit()
            heappush(hq1, (A[ni][nj], ni, nj))
            used1[ni][nj] = True

    hq1, hq2 = hq2, hq1
    used1, used2 = used2, used1
0