結果

問題 No.2731 Two Colors
ユーザー anonymouslyanonymously
提出日時 2024-04-19 22:23:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,366 ms / 3,000 ms
コード長 831 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 124,420 KB
最終ジャッジ日時 2024-10-11 15:52:22
合計ジャッジ時間 16,125 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,340 ms
123,896 KB
testcase_01 AC 1,348 ms
123,988 KB
testcase_02 AC 1,366 ms
124,420 KB
testcase_03 AC 102 ms
76,800 KB
testcase_04 AC 142 ms
78,584 KB
testcase_05 AC 151 ms
78,880 KB
testcase_06 AC 219 ms
84,128 KB
testcase_07 AC 197 ms
82,752 KB
testcase_08 AC 126 ms
77,704 KB
testcase_09 AC 362 ms
100,972 KB
testcase_10 AC 116 ms
76,572 KB
testcase_11 AC 636 ms
120,880 KB
testcase_12 AC 360 ms
100,340 KB
testcase_13 AC 563 ms
113,664 KB
testcase_14 AC 247 ms
87,624 KB
testcase_15 AC 139 ms
77,848 KB
testcase_16 AC 318 ms
92,188 KB
testcase_17 AC 329 ms
95,484 KB
testcase_18 AC 171 ms
79,348 KB
testcase_19 AC 332 ms
94,456 KB
testcase_20 AC 275 ms
89,940 KB
testcase_21 AC 186 ms
80,276 KB
testcase_22 AC 456 ms
109,268 KB
testcase_23 AC 219 ms
84,836 KB
testcase_24 AC 186 ms
80,756 KB
testcase_25 AC 110 ms
77,056 KB
testcase_26 AC 356 ms
99,104 KB
testcase_27 AC 436 ms
106,464 KB
testcase_28 AC 390 ms
100,728 KB
testcase_29 AC 214 ms
83,788 KB
testcase_30 AC 258 ms
87,488 KB
testcase_31 AC 244 ms
86,628 KB
testcase_32 AC 619 ms
122,724 KB
testcase_33 AC 39 ms
52,864 KB
testcase_34 AC 39 ms
52,992 KB
testcase_35 AC 38 ms
53,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

D=[[1,0],[0,1],[-1,0],[0,-1]]

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

C=[[None for j in range(W)] for i in range(H)]

Q=[[(A[H-1][W-1],(H-1,W-1))],[(A[0][0],(0,0))]]
heapq.heapify(Q[1])
heapq.heapify(Q[0])

step = -2
while True:
    step += 1
    k = step%2
    while True:
        _, p = heapq.heappop(Q[k])
        Y, X = p
        if C[Y][X] is None:
            break
    C[Y][X]=k
    f = False
    for d in D:
        y = Y + d[0]
        x = X + d[1]
        if 0<=y<H and 0<=x<W:
            if C[y][x]==1-k:
                f = True
                break
            if C[y][x] is None:
                heapq.heappush(Q[k], (A[y][x],(y,x)))
    if f:
        break
print(step)
'''
for c in C:
    print(*[' ' if _ is None else _ for _ in c])
'''
0