結果

問題 No.2731 Two Colors
ユーザー なえしらなえしら
提出日時 2024-08-13 23:45:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,470 ms / 3,000 ms
コード長 620 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 107,696 KB
最終ジャッジ日時 2024-08-13 23:45:44
合計ジャッジ時間 17,731 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,470 ms
103,116 KB
testcase_01 AC 1,442 ms
102,868 KB
testcase_02 AC 1,412 ms
102,768 KB
testcase_03 AC 93 ms
76,892 KB
testcase_04 AC 116 ms
77,776 KB
testcase_05 AC 121 ms
77,616 KB
testcase_06 AC 210 ms
80,592 KB
testcase_07 AC 179 ms
81,132 KB
testcase_08 AC 108 ms
76,940 KB
testcase_09 AC 390 ms
93,476 KB
testcase_10 AC 98 ms
76,588 KB
testcase_11 AC 777 ms
103,468 KB
testcase_12 AC 382 ms
93,732 KB
testcase_13 AC 648 ms
98,448 KB
testcase_14 AC 242 ms
83,880 KB
testcase_15 AC 110 ms
76,916 KB
testcase_16 AC 341 ms
85,612 KB
testcase_17 AC 376 ms
88,728 KB
testcase_18 AC 148 ms
78,372 KB
testcase_19 AC 365 ms
86,436 KB
testcase_20 AC 253 ms
86,920 KB
testcase_21 AC 157 ms
78,604 KB
testcase_22 AC 580 ms
98,640 KB
testcase_23 AC 219 ms
81,508 KB
testcase_24 AC 159 ms
78,548 KB
testcase_25 AC 94 ms
76,660 KB
testcase_26 AC 378 ms
91,920 KB
testcase_27 AC 503 ms
97,352 KB
testcase_28 AC 442 ms
92,420 KB
testcase_29 AC 203 ms
80,140 KB
testcase_30 AC 245 ms
82,984 KB
testcase_31 AC 245 ms
82,348 KB
testcase_32 AC 745 ms
107,696 KB
testcase_33 AC 38 ms
52,944 KB
testcase_34 AC 40 ms
53,292 KB
testcase_35 AC 41 ms
54,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush

DIJ = [(-1, 0), (0, -1), (0, 1), (1, 0)]

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

color = [[-1]*W for _ in range(H)]
que = [[(A[-1][-1], H-1, W-1)], [(A[0][0], 0, 0)]]

for t in range(-1, H*W-1):
  a, i, j = heappop(que[t%2])
  color[i][j] = t%2
  for ni, nj in DIJ:
    ni += i; nj += j
    if not H > ni >= 0 <= nj < W: continue
    if color[ni][nj] == -1 or color[ni][nj] == t%2-3:
      color[ni][nj] -= t%2+1
      heappush(que[t%2], (A[ni][nj], ni, nj))
    elif color[ni][nj] == 1-t%2: break
  else: continue
  print(t); break
0