結果
問題 | No.13 囲みたい! |
ユーザー | szkhts |
提出日時 | 2022-06-19 09:38:43 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 62 ms / 5,000 ms |
コード長 | 797 bytes |
コンパイル時間 | 132 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 15,488 KB |
最終ジャッジ日時 | 2024-10-11 06:21:27 |
合計ジャッジ時間 | 1,495 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
10,496 KB |
testcase_01 | AC | 31 ms
10,624 KB |
testcase_02 | AC | 34 ms
10,496 KB |
testcase_03 | AC | 58 ms
13,184 KB |
testcase_04 | AC | 62 ms
15,488 KB |
testcase_05 | AC | 53 ms
12,800 KB |
testcase_06 | AC | 51 ms
11,136 KB |
testcase_07 | AC | 48 ms
10,880 KB |
testcase_08 | AC | 47 ms
10,880 KB |
testcase_09 | AC | 48 ms
11,008 KB |
testcase_10 | AC | 34 ms
10,624 KB |
testcase_11 | AC | 44 ms
11,008 KB |
testcase_12 | AC | 32 ms
10,624 KB |
testcase_13 | AC | 36 ms
10,624 KB |
testcase_14 | AC | 37 ms
10,624 KB |
testcase_15 | AC | 31 ms
10,496 KB |
ソースコード
import sys sys.setrecursionlimit(12000) # Input W, H = map(int, input().split()) A = [ list(map(int, input().split())) for i in range(H) ] # DFS Function def dfs(x, y, A, vis): dx = [ 1, 0, -1, 0 ] dy = [ 0, 1, 0, -1 ] vis[x][y] = True cnts = (1, 0) for i in range(4): tx, ty = x + dx[i], y + dy[i] if 0 <= tx and tx < H and 0 <= ty and ty < W and A[tx][ty] == A[x][y]: if not vis[tx][ty]: res = dfs(tx, ty, A, vis) cnts = (cnts[0] + res[0], cnts[1] + res[1]) cnts = (cnts[0], cnts[1] + 1) return cnts # DFS vis = [ [ False ] * W for i in range(H) ] answer = False for i in range(H): for j in range(W): if not vis[i][j]: res = dfs(i, j, A, vis) if res[1] // 2 != res[0] - 1: answer = True # Output if answer: print("possible") else: print("impossible")