結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー 👑 KA37RIKA37RI
提出日時 2023-08-05 03:10:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 914 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 24,000 KB
最終ジャッジ日時 2024-05-10 07:24:15
合計ジャッジ時間 6,252 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 150 ms
19,748 KB
testcase_04 AC 41 ms
11,520 KB
testcase_05 AC 236 ms
24,000 KB
testcase_06 AC 89 ms
15,744 KB
testcase_07 AC 53 ms
12,288 KB
testcase_08 AC 83 ms
13,184 KB
testcase_09 AC 113 ms
16,228 KB
testcase_10 AC 166 ms
17,876 KB
testcase_11 AC 89 ms
16,048 KB
testcase_12 AC 51 ms
12,544 KB
testcase_13 AC 191 ms
14,336 KB
testcase_14 AC 337 ms
16,896 KB
testcase_15 AC 189 ms
14,336 KB
testcase_16 AC 90 ms
12,032 KB
testcase_17 AC 253 ms
15,232 KB
testcase_18 AC 175 ms
14,080 KB
testcase_19 AC 284 ms
16,000 KB
testcase_20 AC 235 ms
15,360 KB
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 133 ms
12,928 KB
testcase_23 AC 115 ms
12,544 KB
testcase_24 AC 122 ms
12,928 KB
testcase_25 AC 287 ms
15,872 KB
testcase_26 AC 135 ms
13,056 KB
testcase_27 AC 310 ms
16,256 KB
testcase_28 AC 212 ms
14,592 KB
testcase_29 AC 133 ms
12,928 KB
testcase_30 AC 29 ms
10,880 KB
testcase_31 AC 307 ms
16,512 KB
testcase_32 AC 129 ms
12,928 KB
testcase_33 WA -
testcase_34 AC 101 ms
12,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = [int(x) for x in input().split()]
M1 = int(input())
A = [int(x) for x in input().split()]
M2 = int(input())
B = [int(x) for x in input().split()]

s = ["."] * N
for ai in A: s[ai-1] = "*"
for bi in B: s[bi-1] = "_"

reachable_clean = [0] * N
reachable_dirty = [0] * N
reachable_clean[0] = 1
for i in range(N):
	if i >= N - 1: continue
	elif s[i+1] == "_": reachable_clean[i+1] = 1
	elif s[i+1] == "*": reachable_dirty[i+1] = 1
	else:
		reachable_dirty[i+1] |= reachable_dirty[i]
		reachable_clean[i+1] |= reachable_clean[i]
	if i >= N - K: continue
	elif s[i+K] == "_": reachable_clean[i+K] = 1
	elif s[i+K] == "*": reachable_dirty[i+K] = 1
	else:
		reachable_clean[i+K] |= reachable_clean[i]
		reachable_dirty[i+K] |= reachable_dirty[i]
print("Yes" if reachable_clean[N-1] == 1 else "No")

import sys
print(s, file=sys.stderr)
print(reachable_clean, file=sys.stderr)
print(reachable_dirty, file=sys.stderr)
0