結果
問題 | No.13 囲みたい! |
ユーザー | Navier_Boltzmann |
提出日時 | 2022-10-10 09:18:37 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 107 ms / 5,000 ms |
コード長 | 1,220 bytes |
コンパイル時間 | 334 ms |
コンパイル使用メモリ | 82,468 KB |
実行使用メモリ | 78,436 KB |
最終ジャッジ日時 | 2024-06-24 04:54:30 |
合計ジャッジ時間 | 2,525 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
55,956 KB |
testcase_01 | AC | 47 ms
56,404 KB |
testcase_02 | AC | 47 ms
55,908 KB |
testcase_03 | AC | 70 ms
74,192 KB |
testcase_04 | AC | 51 ms
62,904 KB |
testcase_05 | AC | 97 ms
78,436 KB |
testcase_06 | AC | 61 ms
70,004 KB |
testcase_07 | AC | 107 ms
78,064 KB |
testcase_08 | AC | 77 ms
77,660 KB |
testcase_09 | AC | 77 ms
77,128 KB |
testcase_10 | AC | 67 ms
72,400 KB |
testcase_11 | AC | 79 ms
77,300 KB |
testcase_12 | AC | 64 ms
69,276 KB |
testcase_13 | AC | 69 ms
74,548 KB |
testcase_14 | AC | 69 ms
74,928 KB |
testcase_15 | AC | 47 ms
58,156 KB |
ソースコード
from collections import * from itertools import * from functools import * from heapq import * import sys,math input = sys.stdin.readline W,H = map(int,input().split()) M = [list(map(int,input().split())) for _ in range(H)] def nb(x,y): tmp = [] if x+1<H: tmp.append((x+1,y)) if x-1>=0: tmp.append((x-1,y)) if y+1<W: tmp.append((x,y+1)) if y-1>=0: tmp.append((x,y-1)) return tmp visited = [[False]*W for _ in range(H)] for i in range(H): for j in range(W): if visited[i][j]: continue visited[i][j] = True m = M[i][j] v = deque() dist = defaultdict(lambda: -1) par = defaultdict(lambda: -1) v.append((i,j)) while v: ix,iy = v.popleft() for jx,jy in nb(ix,iy): if (jx,jy)==par[(ix,iy)]: continue if M[jx][jy] != m: continue par[(jx,jy)]=(ix,iy) if visited[jx][jy]: print('possible') exit() visited[jx][jy] = True v.append((jx,jy)) print('impossible')