結果
問題 | No.2731 Two Colors |
ユーザー | kusirakusira |
提出日時 | 2024-03-14 17:03:33 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,636 bytes |
コンパイル時間 | 365 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 277,056 KB |
最終ジャッジ日時 | 2024-10-03 13:24:38 |
合計ジャッジ時間 | 11,471 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 38 ms
55,056 KB |
testcase_34 | AC | 37 ms
53,932 KB |
testcase_35 | WA | - |
ソースコード
from heapq import * # 入力 h,w = map(int,input().split()) A = [list(map(int,input().split())) for _ in range(h)] # BFSで使うqueを用意 queA = [(A[0][0], 0, 0)] heapify(queA) usedA = [[0 for j in range(w)]for i in range(h)] queB = [(A[-1][-1], h-1, w-1)] heapify(queB) usedB = [[0 for j in range(w)]for i in range(h)] # マス(i,j)と隣接している頂点リストを返す def nextV(i,j): V = [] # 上 if((i == 0) == False): V.append((A[i-1][j], i-1, j)) # 下 if((i == h-1) == False): V.append((A[i+1][j], i+1, j)) # 左 if((j == 0) == False): V.append((A[i][j-1], i, j-1)) # 右 if((j == w-1) == False): V.append((A[i][j+1], i, j+1)) return V # 色1を広げる def f(): v = heappop(queA) usedA[v[1]][v[2]] = 1 # 色1と色0が隣接したら出力 for nv in nextV(v[1], v[2]): if(usedB[nv[1]][nv[2]] == 1): print(i-1) exit() # 次の頂点をみる for nv in nextV(v[1], v[2]): if(usedA[nv[1]][nv[2]] == 1): continue heappush(queA, nv) # 色0を広げる def g(): v = heappop(queB) usedB[v[1]][v[2]] = 1 # 色1と色0が隣接したら出力 for nv in nextV(v[1], v[2]): if(usedA[nv[1]][nv[2]] == 1): print(i-1) exit() # 次の頂点をみる for nv in nextV(v[1], v[2]): if(usedB[nv[1]][nv[2]] == 1): continue heappush(queB, nv) # 愚直にシミュレーション for i in range(h*w): if(i%2 == 0): f() elif(i%2 == 1): g()