結果

問題 No.2731 Two Colors
ユーザー なえしらなえしら
提出日時 2024-08-13 23:20:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 611 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 131,272 KB
最終ジャッジ日時 2024-08-13 23:20:53
合計ジャッジ時間 27,915 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 106 ms
76,544 KB
testcase_04 AC 156 ms
79,596 KB
testcase_05 AC 171 ms
78,912 KB
testcase_06 AC 275 ms
85,632 KB
testcase_07 AC 233 ms
83,784 KB
testcase_08 AC 135 ms
77,524 KB
testcase_09 AC 504 ms
103,328 KB
testcase_10 AC 127 ms
77,356 KB
testcase_11 AC 1,007 ms
128,136 KB
testcase_12 AC 507 ms
103,576 KB
testcase_13 AC 924 ms
122,188 KB
testcase_14 AC 332 ms
89,600 KB
testcase_15 AC 145 ms
77,768 KB
testcase_16 AC 435 ms
94,584 KB
testcase_17 AC 493 ms
98,816 KB
testcase_18 AC 200 ms
80,580 KB
testcase_19 AC 465 ms
96,364 KB
testcase_20 AC 307 ms
90,780 KB
testcase_21 AC 200 ms
80,348 KB
testcase_22 AC 752 ms
115,588 KB
testcase_23 AC 316 ms
87,040 KB
testcase_24 AC 217 ms
81,972 KB
testcase_25 AC 110 ms
76,928 KB
testcase_26 AC 482 ms
102,132 KB
testcase_27 AC 618 ms
111,480 KB
testcase_28 AC 621 ms
104,576 KB
testcase_29 AC 295 ms
85,776 KB
testcase_30 AC 329 ms
89,536 KB
testcase_31 AC 307 ms
87,988 KB
testcase_32 AC 991 ms
131,272 KB
testcase_33 AC 42 ms
52,992 KB
testcase_34 AC 41 ms
52,864 KB
testcase_35 AC 41 ms
52,608 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):
  while True:
    a, i, j = heappop(que[t%2])
    if color[i][j] == -1: break
  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:
      heappush(que[t%2], (A[ni][nj], ni, nj))
    elif color[ni][nj] != t%2: break
  else: continue
  print(t); break
0