結果

問題 No.2731 Two Colors
ユーザー june19312june19312
提出日時 2024-04-20 09:56:37
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,400 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 131,200 KB
最終ジャッジ日時 2024-10-12 05:23:34
合計ジャッジ時間 29,119 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 141 ms
77,824 KB
testcase_04 AC 178 ms
78,744 KB
testcase_05 AC 193 ms
78,696 KB
testcase_06 AC 330 ms
86,184 KB
testcase_07 AC 247 ms
83,664 KB
testcase_08 AC 157 ms
77,696 KB
testcase_09 AC 584 ms
104,152 KB
testcase_10 AC 155 ms
77,736 KB
testcase_11 AC 1,135 ms
130,280 KB
testcase_12 AC 556 ms
103,584 KB
testcase_13 AC 996 ms
120,420 KB
testcase_14 AC 414 ms
91,352 KB
testcase_15 AC 165 ms
78,456 KB
testcase_16 AC 522 ms
95,744 KB
testcase_17 AC 536 ms
99,392 KB
testcase_18 AC 248 ms
80,928 KB
testcase_19 AC 566 ms
97,516 KB
testcase_20 AC 388 ms
92,008 KB
testcase_21 AC 259 ms
80,984 KB
testcase_22 AC 812 ms
115,808 KB
testcase_23 AC 320 ms
87,372 KB
testcase_24 AC 259 ms
81,700 KB
testcase_25 AC 124 ms
77,228 KB
testcase_26 AC 536 ms
101,504 KB
testcase_27 AC 708 ms
111,076 KB
testcase_28 AC 671 ms
105,648 KB
testcase_29 AC 299 ms
85,332 KB
testcase_30 AC 353 ms
88,712 KB
testcase_31 AC 366 ms
88,576 KB
testcase_32 AC 1,089 ms
131,200 KB
testcase_33 AC 38 ms
52,864 KB
testcase_34 AC 37 ms
52,736 KB
testcase_35 AC 37 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush
H,W = map(int,input().split())
G = []
color = []

for i in range(H):
    G.append(list(map(int,input().split())))
    color.append([-1]*W)

now1 = (0,0)
now2 = (H-1,W-1)

Q1,Q2 = [],[]
heappush(Q1,(G[0][0],0,0))
heappush(Q2,(G[H-1][W-1],H-1,W-1))

cnt = 0
dir = [(-1,0),(1,0),(0,-1),(0,1)]

while True:
    if cnt % 2 == 0:
        if Q1:
            val,h,w = heappop(Q1)

            if color[h][w] != -1:
                continue

            color[h][w] = 0
            cnt += 1

            for a,b in dir:
                if 0 <= h+a < H and 0 <= w+b < W:
                    if color[h+a][w+b] == 1:
                        print(cnt-2)
                        exit()
                    elif color[h+a][w+b] == -1:
                        heappush(Q1,(G[h+a][w+b],h+a,w+b))
        else:
            print(cnt-2)
            exit()
    else:
        if Q2:
            val,h,w = heappop(Q2)
            if color[h][w] != -1:
                continue
            color[h][w] = 1
            cnt += 1
            for a,b in dir:
                if 0 <= h+a < H and 0 <= w+b < W:
                    if color[h+a][w+b] == 0:
                        print(cnt-2)
                        exit()
                    elif color[h+a][w+b] == -1:
                        heappush(Q2,(G[h+a][w+b],h+a,w+b))
        else:
            print(cnt-2)
            exit()


0