結果
問題 | No.2731 Two Colors |
ユーザー | hotate29 |
提出日時 | 2024-04-19 22:04:41 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,170 bytes |
コンパイル時間 | 529 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 85,376 KB |
最終ジャッジ日時 | 2024-10-11 15:14:28 |
合計ジャッジ時間 | 9,420 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
ソースコード
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)