結果

問題 No.2731 Two Colors
ユーザー hotate29hotate29
提出日時 2024-04-19 22:05:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,558 ms / 3,000 ms
コード長 1,170 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 119,672 KB
最終ジャッジ日時 2024-10-11 15:16:26
合計ジャッジ時間 18,729 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,545 ms
119,264 KB
testcase_01 AC 1,538 ms
119,384 KB
testcase_02 AC 1,558 ms
119,672 KB
testcase_03 AC 120 ms
77,408 KB
testcase_04 AC 153 ms
78,804 KB
testcase_05 AC 161 ms
78,688 KB
testcase_06 AC 246 ms
83,436 KB
testcase_07 AC 206 ms
83,304 KB
testcase_08 AC 127 ms
78,336 KB
testcase_09 AC 475 ms
104,404 KB
testcase_10 AC 124 ms
77,844 KB
testcase_11 AC 871 ms
111,304 KB
testcase_12 AC 468 ms
103,856 KB
testcase_13 AC 738 ms
106,272 KB
testcase_14 AC 299 ms
89,056 KB
testcase_15 AC 147 ms
77,860 KB
testcase_16 AC 383 ms
89,596 KB
testcase_17 AC 428 ms
94,052 KB
testcase_18 AC 182 ms
79,312 KB
testcase_19 AC 418 ms
90,396 KB
testcase_20 AC 309 ms
93,808 KB
testcase_21 AC 200 ms
80,036 KB
testcase_22 AC 637 ms
108,276 KB
testcase_23 AC 264 ms
83,976 KB
testcase_24 AC 186 ms
80,584 KB
testcase_25 AC 102 ms
76,800 KB
testcase_26 AC 460 ms
100,064 KB
testcase_27 AC 561 ms
106,440 KB
testcase_28 AC 513 ms
97,228 KB
testcase_29 AC 240 ms
82,792 KB
testcase_30 AC 306 ms
87,220 KB
testcase_31 AC 288 ms
84,352 KB
testcase_32 AC 872 ms
118,988 KB
testcase_33 AC 38 ms
52,864 KB
testcase_34 AC 39 ms
52,992 KB
testcase_35 AC 38 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush

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

# くっつくまでやる
a_q = [(a[0][0], 0, 0)]
pushed_a = [[False] * w for _ in range(h)]

b_q = [(a[-1][-1], h - 1, w - 1)]
pushed_b = [[False] * w for _ in range(h)]

colors = [[-1] * w for _ in range(h)]

go = True
turn = 0
cnt = 0
DXDY = [(1, 0), (0, 1), (-1, 0), (0, -1)]

while go:
    # print(a_q, b_q, turn)

    if turn == 0:
        _, y, x = heappop(a_q)
    else:
        _, y, x = heappop(b_q)

    if colors[y][x] != -1:
        continue

    colors[y][x] = turn
    for dx, dy in DXDY:
        nx, ny = x + dx, y + dy
        if 0 <= nx < w and 0 <= ny < h:
            if colors[ny][nx] == -1:
                if turn == 0 and not pushed_a[ny][nx]:
                    heappush(a_q, (a[ny][nx], ny, nx))
                    pushed_a[ny][nx] = True
                elif turn == 1 and not pushed_b[ny][nx]:
                    heappush(b_q, (a[ny][nx], ny, nx))
                    pushed_b[ny][nx] = True

            elif colors[ny][nx] != turn:
                go = False

    turn = 1 - turn
    cnt += 1

print(cnt - 2)
0