結果

問題 No.2731 Two Colors
ユーザー ntudantuda
提出日時 2024-04-20 10:56:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,159 ms / 3,000 ms
コード長 809 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 121,120 KB
最終ジャッジ日時 2024-10-12 06:33:42
合計ジャッジ時間 15,202 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,145 ms
107,668 KB
testcase_01 AC 1,144 ms
107,400 KB
testcase_02 AC 1,159 ms
107,872 KB
testcase_03 AC 103 ms
76,640 KB
testcase_04 AC 138 ms
78,460 KB
testcase_05 AC 135 ms
78,252 KB
testcase_06 AC 204 ms
84,292 KB
testcase_07 AC 179 ms
82,044 KB
testcase_08 AC 113 ms
77,324 KB
testcase_09 AC 334 ms
100,096 KB
testcase_10 AC 105 ms
76,772 KB
testcase_11 AC 531 ms
118,088 KB
testcase_12 AC 338 ms
99,828 KB
testcase_13 AC 513 ms
111,764 KB
testcase_14 AC 255 ms
87,740 KB
testcase_15 AC 142 ms
78,740 KB
testcase_16 AC 303 ms
91,536 KB
testcase_17 AC 306 ms
94,764 KB
testcase_18 AC 160 ms
79,336 KB
testcase_19 AC 315 ms
93,248 KB
testcase_20 AC 242 ms
89,552 KB
testcase_21 AC 182 ms
80,528 KB
testcase_22 AC 426 ms
108,256 KB
testcase_23 AC 208 ms
84,732 KB
testcase_24 AC 162 ms
80,380 KB
testcase_25 AC 115 ms
76,836 KB
testcase_26 AC 311 ms
97,572 KB
testcase_27 AC 397 ms
105,328 KB
testcase_28 AC 393 ms
100,056 KB
testcase_29 AC 198 ms
83,428 KB
testcase_30 AC 217 ms
87,020 KB
testcase_31 AC 227 ms
85,924 KB
testcase_32 AC 548 ms
121,120 KB
testcase_33 AC 39 ms
54,332 KB
testcase_34 AC 38 ms
53,496 KB
testcase_35 AC 38 ms
53,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

H, W = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(H)]
M = [[-1] * W for _ in range(H)]
M[0][0] = 0
M[H - 1][W - 1] = 1
dir = [[0, 1], [1, 0], [-1, 0], [0, -1]]
q0 = [(A[0][1], (0, 1)), (A[1][0], (1, 0))]
heapify(q0)
q1 = [(A[H - 1][W - 2], (H - 1, W - 2)), (A[H - 2][W - 1], (H - 2, W - 1))]
heapify(q1)
Q = [q0, q1]

i = 0
while 1:
    i2 = i % 2
    a, (x, y) = heappop(Q[i2])
    if M[x][y] == -1:
        M[x][y] = i2
        for xd, yd in dir:
            x2 = x + xd
            y2 = y + yd
            if 0 <= x2 < H and 0 <= y2 < W:
                if M[x2][y2] == i2 ^ 1:
                    print(i + 1)
                    exit()
                elif M[x2][y2] == -1:
                    heappush(Q[i2], (A[x2][y2], (x2, y2)))
        i += 1
0