結果
問題 | No.2412 YOU Grow Bigger! |
ユーザー | sotanishy |
提出日時 | 2023-08-11 23:22:14 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,613 bytes |
コンパイル時間 | 238 ms |
コンパイル使用メモリ | 82,036 KB |
実行使用メモリ | 77,136 KB |
最終ジャッジ日時 | 2024-11-18 18:48:32 |
合計ジャッジ時間 | 3,387 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
53,200 KB |
testcase_01 | AC | 43 ms
52,768 KB |
testcase_02 | AC | 48 ms
60,608 KB |
testcase_03 | AC | 74 ms
73,236 KB |
testcase_04 | AC | 83 ms
76,620 KB |
testcase_05 | AC | 77 ms
74,884 KB |
testcase_06 | AC | 80 ms
74,712 KB |
testcase_07 | AC | 78 ms
74,788 KB |
testcase_08 | AC | 99 ms
76,636 KB |
testcase_09 | AC | 61 ms
67,440 KB |
testcase_10 | AC | 57 ms
65,424 KB |
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 | AC | 46 ms
60,548 KB |
testcase_20 | WA | - |
testcase_21 | AC | 54 ms
64,944 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 88 ms
76,380 KB |
testcase_26 | AC | 55 ms
63,904 KB |
testcase_27 | AC | 49 ms
62,420 KB |
testcase_28 | AC | 58 ms
66,424 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
ソースコード
import sys input = sys.stdin.readline H, W = map(int, input().split()) S = [input().rstrip() for _ in range(H)] reachable1 = [[0] * W for _ in range(H)] st = [] for i in range(H): for j in range(W): if S[i][j] == '#' and (i >= H-3 or j < 3): reachable1[i][j] = 1 st.append((i, j)) while st: i, j = st.pop() for ni in range(i-3, i+4): for nj in range(j-3, j+4): if abs(i-ni)+abs(j-nj) <= 3 and 0 <= ni < H and 0 <= nj < W and S[ni][nj] == '#' and not reachable1[ni][nj]: reachable1[ni][nj] = 1 st.append((ni, nj)) reachable2 = [[0] * W for _ in range(H)] st = [] for i in range(H): for j in range(W): if S[i][j] == '#' and (i < 3 or j >= W-3): reachable2[i][j] = 1 st.append((i, j)) while st: i, j = st.pop() for ni in range(i-3, i+4): for nj in range(j-3, j+4): if abs(i-ni)+abs(j-nj) <= 3 and 0 <= ni < H and 0 <= nj < W and S[ni][nj] == '#' and not reachable2[ni][nj]: reachable2[ni][nj] = 1 st.append((ni, nj)) for i in range(H): for j in range(W): if reachable1[i][j] and reachable2[i][j]: print(0) exit() for i in range(H): for j in range(W): r1 = r2 = 0 for ni in range(i-3, i+4): for nj in range(j-3, j+4): if (ni, nj) != (i, j) and 0 <= ni < H and 0 <= nj < W: r1 |= reachable1[ni][nj] r2 |= reachable2[ni][nj] if r1 and r2: print(1) exit() print(2)