結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-08-05 17:19:01
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 764 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 95,352 KB
最終ジャッジ日時 2024-05-10 07:25:15
合計ジャッジ時間 4,698 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
55,296 KB
testcase_01 AC 51 ms
55,936 KB
testcase_02 AC 52 ms
55,424 KB
testcase_03 AC 86 ms
93,312 KB
testcase_04 AC 57 ms
63,104 KB
testcase_05 AC 109 ms
95,352 KB
testcase_06 AC 71 ms
76,544 KB
testcase_07 AC 60 ms
66,432 KB
testcase_08 AC 63 ms
66,816 KB
testcase_09 AC 70 ms
74,368 KB
testcase_10 AC 85 ms
89,856 KB
testcase_11 AC 74 ms
79,104 KB
testcase_12 AC 64 ms
67,840 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 54 ms
56,704 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 53 ms
55,936 KB
testcase_22 RE -
testcase_23 AC 52 ms
56,448 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 53 ms
55,936 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 54 ms
55,552 KB
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
# input = sys.stdin.readline

N,K = map(int,input().split())

M1 = int(input())
if M1!=0:
    A = list(map(int,input().split()))
else:
    A = set([])
M2 = int(input())
if M2!=0:
    B = list(map(int,input().split()))
else:
    B = set([])
B =set(B)
A = set(A)
dp = [-1]*(N+1)
dp[0]=1
def f(x):
    if dp[x]!=-1:
        return dp[x]
    if x in A:
        dp[x] = 0
        return dp[x]
    if x in B:
        dp[x] = 1
        return 1
    if x>=K:
        dp[x] = max(f(x-1),f(x-K))
        return dp[x]
    dp[x] = f(x-1)
    return dp[x]
if f(N):
    print('Yes')
else:
    print('No')
0