結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー ikomaikoma
提出日時 2023-08-04 21:38:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 93,860 KB
最終ジャッジ日時 2024-12-20 02:30:41
合計ジャッジ時間 3,186 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,K=map(int,input().split())
M1=int(input())
A=list(map(int,input().split()))
M2=int(input())
B=list(map(int,input().split()))

kaidan = [0]*(N+1)
for a in A:
    kaidan[a]=2
for b in B:
    kaidan[b]=1

dp = [0]*(N+1)
dp[0]=1

for i in range(1,N+1):
    if kaidan[i]==1:
        dp[i]=1
    elif kaidan[i]==2:
        dp[i]=0
    else:
        if dp[i-1]:
            dp[i]=1
        if i-K>=0 and dp[i-K]:
            dp[i]=1

print("Yes" if dp[-1] else "No")
0