結果

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

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n,k= map(int,input().split())

m1 = int(input())
lm1 = set(list(map(int,input().split())))
m2= int(input())
lm2 = set(list(map(int,input().split())))

dp=[False]*(n+1)
dp[0] = True

for i in range(1,n+1):
    dp[i] = dp[i-1]
    if i-k >= 0:
        dp[i] = dp[i] | dp[i-k]
    if i in lm1:
        dp[i] = False
    if i in lm2:
        dp[i] = True

if dp[n]:
    print('Yes')
else:
    print('No')
0