結果

問題 No.2731 Two Colors
ユーザー hotate29hotate29
提出日時 2024-04-19 21:58:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 934 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 130,980 KB
最終ジャッジ日時 2024-10-11 15:05:04
合計ジャッジ時間 29,402 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 141 ms
76,776 KB
testcase_04 AC 193 ms
79,208 KB
testcase_05 AC 201 ms
78,760 KB
testcase_06 AC 343 ms
87,220 KB
testcase_07 AC 284 ms
83,648 KB
testcase_08 AC 163 ms
77,952 KB
testcase_09 AC 622 ms
104,344 KB
testcase_10 AC 156 ms
77,764 KB
testcase_11 AC 1,202 ms
129,764 KB
testcase_12 AC 555 ms
103,680 KB
testcase_13 AC 954 ms
120,280 KB
testcase_14 AC 380 ms
90,688 KB
testcase_15 AC 184 ms
78,672 KB
testcase_16 AC 541 ms
95,712 KB
testcase_17 AC 555 ms
99,380 KB
testcase_18 AC 261 ms
81,256 KB
testcase_19 AC 532 ms
96,848 KB
testcase_20 AC 371 ms
91,768 KB
testcase_21 AC 256 ms
81,156 KB
testcase_22 AC 835 ms
116,024 KB
testcase_23 AC 340 ms
86,576 KB
testcase_24 AC 251 ms
81,536 KB
testcase_25 AC 136 ms
77,108 KB
testcase_26 AC 611 ms
103,416 KB
testcase_27 AC 727 ms
110,136 KB
testcase_28 AC 694 ms
105,296 KB
testcase_29 AC 328 ms
85,172 KB
testcase_30 AC 367 ms
89,456 KB
testcase_31 AC 363 ms
87,640 KB
testcase_32 AC 1,108 ms
130,980 KB
testcase_33 AC 40 ms
52,816 KB
testcase_34 AC 41 ms
52,608 KB
testcase_35 AC 43 ms
52,352 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)]
b_q = [(a[-1][-1], h - 1, w - 1)]

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:
                    heappush(a_q, (a[ny][nx], ny, nx))
                else:
                    heappush(b_q, (a[ny][nx], ny, nx))
            elif colors[ny][nx] != turn:
                go = False

    turn = 1 - turn
    cnt += 1

print(cnt - 2)
0