結果
問題 | No.2412 YOU Grow Bigger! |
ユーザー | LyricalMaestro |
提出日時 | 2024-12-03 00:01:17 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,130 bytes |
コンパイル時間 | 381 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 81,920 KB |
最終ジャッジ日時 | 2024-12-03 00:01:29 |
合計ジャッジ時間 | 10,805 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
54,016 KB |
testcase_01 | AC | 47 ms
54,144 KB |
testcase_02 | AC | 49 ms
54,656 KB |
testcase_03 | AC | 1,102 ms
81,152 KB |
testcase_04 | AC | 1,170 ms
81,920 KB |
testcase_05 | AC | 759 ms
79,744 KB |
testcase_06 | AC | 947 ms
80,512 KB |
testcase_07 | AC | 1,089 ms
81,280 KB |
testcase_08 | AC | 1,043 ms
80,512 KB |
testcase_09 | AC | 68 ms
66,048 KB |
testcase_10 | AC | 127 ms
76,416 KB |
testcase_11 | AC | 54 ms
60,416 KB |
testcase_12 | AC | 49 ms
53,888 KB |
testcase_13 | AC | 124 ms
76,416 KB |
testcase_14 | AC | 69 ms
64,512 KB |
testcase_15 | AC | 58 ms
60,928 KB |
testcase_16 | AC | 63 ms
63,488 KB |
testcase_17 | AC | 68 ms
65,280 KB |
testcase_18 | AC | 216 ms
76,544 KB |
testcase_19 | AC | 60 ms
61,056 KB |
testcase_20 | AC | 59 ms
61,824 KB |
testcase_21 | WA | - |
testcase_22 | AC | 112 ms
76,672 KB |
testcase_23 | AC | 192 ms
76,800 KB |
testcase_24 | AC | 474 ms
78,080 KB |
testcase_25 | WA | - |
testcase_26 | AC | 100 ms
76,672 KB |
testcase_27 | AC | 90 ms
76,288 KB |
testcase_28 | AC | 141 ms
76,672 KB |
testcase_29 | AC | 55 ms
61,056 KB |
testcase_30 | AC | 48 ms
54,272 KB |
ソースコード
## https://yukicoder.me/problems/no/2412 from collections import deque def bfs(H, W, cum_s_array): passed = [[False] * (W - 2) for _ in range(H - 2)] passed[0][0] = True queue = deque() queue.append((0, 0)) while len(queue) > 0: h, w = queue.popleft() for dh, dw in ((1, 0), (-1, 0), (0, 1), (0, -1)): new_h = dh + h new_w = dw + w if 0 <= new_h < H - 2 and 0 <= new_w < W - 2: if cum_s_array[new_h + 3][new_w + 3] - cum_s_array[new_h][new_w + 3] - cum_s_array[new_h + 3][new_w] + cum_s_array[new_h][new_w] == 0: if not passed[new_h][new_w]: passed[new_h][new_w] = True queue.append((new_h, new_w)) return passed[-1][-1] def reachable(H, W, s_array): # 累積和計算 cum_s_array = [[0] * (W + 1) for _ in range(H + 1)] for h in range(H): cum_row = 0 for w in range(W): cum_row += s_array[h][w] cum_s_array[h + 1][w + 1] = cum_row + cum_s_array[h][w + 1] # BFSによる探索 return bfs(H, W, cum_s_array) def main(): H, W = map(int, input().split()) S = [] for _ in range(H): S.append(input()) # 迷路のベースを作成 s_array = [] for s in S: row = [] for i in range(len(s)): if s[i] == "#": row.append(1) else: row.append(0) s_array.append(row) if not reachable(H, W, s_array): print(0) return def forbidden(h, w): if 0 <= h < 3 and 0 <= w < 3: return True if H - 3 <= h < H and W - 3 <= w < W: return True return False for h in range(H): for w in range(W): if S[h][w] == ".": if not forbidden(h, w): s_array[h][w] = 1 if not reachable(H, W, s_array): print(1) return s_array[h][w] = 0 print(2) if __name__ == '__main__': main()