結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー flygonflygon
提出日時 2023-08-04 21:30:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 998 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 109,324 KB
最終ジャッジ日時 2024-12-20 02:25:45
合計ジャッジ時間 4,025 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,752 KB
testcase_01 AC 46 ms
55,260 KB
testcase_02 AC 45 ms
55,096 KB
testcase_03 AC 112 ms
99,448 KB
testcase_04 AC 71 ms
73,500 KB
testcase_05 AC 132 ms
109,324 KB
testcase_06 AC 96 ms
89,704 KB
testcase_07 AC 67 ms
74,048 KB
testcase_08 AC 67 ms
74,940 KB
testcase_09 AC 98 ms
90,232 KB
testcase_10 AC 109 ms
97,084 KB
testcase_11 AC 97 ms
90,924 KB
testcase_12 AC 81 ms
79,484 KB
testcase_13 AC 66 ms
75,012 KB
testcase_14 AC 99 ms
92,644 KB
testcase_15 AC 64 ms
74,092 KB
testcase_16 AC 61 ms
69,228 KB
testcase_17 AC 94 ms
89,444 KB
testcase_18 AC 66 ms
74,004 KB
testcase_19 AC 96 ms
92,084 KB
testcase_20 AC 92 ms
88,972 KB
testcase_21 AC 54 ms
64,536 KB
testcase_22 AC 65 ms
72,740 KB
testcase_23 AC 62 ms
69,288 KB
testcase_24 AC 63 ms
70,732 KB
testcase_25 AC 93 ms
91,416 KB
testcase_26 AC 62 ms
71,800 KB
testcase_27 AC 97 ms
92,116 KB
testcase_28 AC 68 ms
75,372 KB
testcase_29 AC 62 ms
70,972 KB
testcase_30 AC 57 ms
65,324 KB
testcase_31 AC 98 ms
92,144 KB
testcase_32 AC 60 ms
68,968 KB
testcase_33 AC 45 ms
54,760 KB
testcase_34 AC 62 ms
69,476 KB
権限があれば一括ダウンロードができます

ソースコード

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())
a = set(list(map(int,input().split())))
m2= int(input())
b = set(list(map(int,input().split())))
now = 0

dp = [[0,0] for i in range(n+1)]
dp[0][0] = 1

for i in range(1,n+1):
    if i in b:
        if i >= k:
            dp[i][0] |= dp[i-k][0]
            dp[i][0] |= dp[i-k][1]
        dp[i][0] |= dp[i-1][0]
        dp[i][0] |= dp[i-1][1]
    elif i in a:
        if i >= k:
            dp[i][1] |= dp[i-k][0]
            dp[i][1] |= dp[i-k][1]
        dp[i][1] |= dp[i-1][0]
        dp[i][1] |= dp[i-1][1]
    else:
        if i >= k:
            dp[i][0] |= dp[i-k][0]
            dp[i][1] |= dp[i-k][1]
        dp[i][0] |= dp[i-1][0]
        dp[i][1] |= dp[i-1][1]

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