結果

問題 No.2731 Two Colors
ユーザー vwxyzvwxyz
提出日時 2024-08-09 05:14:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 785 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 134,528 KB
最終ジャッジ日時 2024-08-09 05:15:08
合計ジャッジ時間 27,727 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 115 ms
76,808 KB
testcase_04 AC 160 ms
79,404 KB
testcase_05 AC 158 ms
79,104 KB
testcase_06 AC 281 ms
86,144 KB
testcase_07 AC 226 ms
83,516 KB
testcase_08 AC 155 ms
77,952 KB
testcase_09 AC 556 ms
105,344 KB
testcase_10 AC 132 ms
76,672 KB
testcase_11 AC 1,092 ms
130,240 KB
testcase_12 AC 507 ms
105,276 KB
testcase_13 AC 897 ms
123,392 KB
testcase_14 AC 337 ms
89,716 KB
testcase_15 AC 145 ms
77,620 KB
testcase_16 AC 481 ms
96,160 KB
testcase_17 AC 484 ms
100,096 KB
testcase_18 AC 213 ms
80,344 KB
testcase_19 AC 527 ms
98,284 KB
testcase_20 AC 336 ms
92,592 KB
testcase_21 AC 204 ms
80,336 KB
testcase_22 AC 777 ms
117,128 KB
testcase_23 AC 290 ms
86,328 KB
testcase_24 AC 208 ms
80,672 KB
testcase_25 AC 114 ms
76,928 KB
testcase_26 AC 515 ms
102,912 KB
testcase_27 AC 646 ms
112,812 KB
testcase_28 AC 645 ms
107,520 KB
testcase_29 AC 281 ms
85,828 KB
testcase_30 AC 333 ms
90,368 KB
testcase_31 AC 346 ms
88,536 KB
testcase_32 AC 1,029 ms
134,528 KB
testcase_33 AC 39 ms
52,480 KB
testcase_34 AC 40 ms
52,480 KB
testcase_35 AC 39 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

H,W=map(int,input().split())
A=[list(map(int,input().split())) for h in range(H)]
color=[[None]*W for h in range(H)]
queue=[[(A[0][1],0,1),(A[1][0],1,0)],[(A[H-1][W-2],H-1,W-2),(A[H-2][W-1],H-2,W-1)]]
color[0][0]=0
color[H-1][W-1]=1
heapq.heapify(queue[0])
heapq.heapify(queue[1])
ans=0
while True:
    c=ans%2
    a,h,w=heapq.heappop(queue[c])
    while color[h][w]!=None:
        a,h,w=heapq.heappop(queue[c])
    ans+=1
    color[h][w]=c
    skip=False
    for dh,dw in ((0,1),(1,0),(0,-1),(-1,0)):
        if 0<=h+dh<H and 0<=w+dw<W:
            if color[h+dh][w+dw]==None:
                heapq.heappush(queue[c],(A[h+dh][w+dw],h+dh,w+dw))
            else:
                if color[h+dh][w+dw]!=c:
                    skip=True
    if skip:
        break
print(ans)
0