結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-08-04 21:52:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 614 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 98,560 KB
最終ジャッジ日時 2024-05-10 07:19:08
合計ジャッジ時間 3,645 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 AC 34 ms
52,352 KB
testcase_02 AC 34 ms
52,736 KB
testcase_03 AC 94 ms
92,652 KB
testcase_04 AC 57 ms
69,120 KB
testcase_05 AC 106 ms
98,560 KB
testcase_06 AC 77 ms
85,416 KB
testcase_07 AC 62 ms
73,856 KB
testcase_08 AC 62 ms
74,620 KB
testcase_09 AC 87 ms
86,520 KB
testcase_10 AC 94 ms
91,448 KB
testcase_11 AC 78 ms
85,504 KB
testcase_12 AC 65 ms
73,984 KB
testcase_13 AC 59 ms
74,344 KB
testcase_14 AC 88 ms
94,812 KB
testcase_15 AC 52 ms
71,168 KB
testcase_16 AC 52 ms
67,328 KB
testcase_17 AC 58 ms
76,672 KB
testcase_18 AC 54 ms
72,320 KB
testcase_19 AC 84 ms
92,408 KB
testcase_20 AC 60 ms
75,648 KB
testcase_21 AC 45 ms
61,184 KB
testcase_22 AC 53 ms
69,632 KB
testcase_23 AC 48 ms
66,944 KB
testcase_24 AC 54 ms
69,632 KB
testcase_25 AC 81 ms
91,808 KB
testcase_26 AC 54 ms
69,376 KB
testcase_27 AC 81 ms
92,800 KB
testcase_28 AC 56 ms
74,240 KB
testcase_29 AC 53 ms
69,504 KB
testcase_30 AC 47 ms
62,208 KB
testcase_31 AC 82 ms
93,184 KB
testcase_32 AC 51 ms
68,096 KB
testcase_33 AC 35 ms
52,224 KB
testcase_34 AC 51 ms
68,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
m1 = int(input())
A = list(map(int,input().split()))
m2 = int(input())
B = list(map(int,input().split()))

clean = [0]*(n+1)
for a in A:
	clean[a] = 1
for b in B:
	clean[b] = -1
	
dp = [[0,0] for i in range(n+1)]
dp[0][0] = 1

for i in range(n):
	if clean[i+1] == 1:
		dp[i+1][1] = 1
	elif clean[i+1] == -1:
		dp[i+1][0] = 1
	else:
		dp[i+1][1] |= dp[i][1]
		dp[i+1][0] |= dp[i][0]
		
	if i+k > n:
		continue
	if clean[i+k] == 1:
		dp[i+k][1] = 1
	elif clean[i+k] == -1:
		dp[i+k][0] = 1
	else:
		dp[i+k][1] |= dp[i][1]
		dp[i+k][0] |= dp[i][0]
		
print("Yes" if dp[-1][0] else "No")
0