結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
54,016 KB
testcase_01 AC 51 ms
54,400 KB
testcase_02 AC 57 ms
54,272 KB
testcase_03 AC 132 ms
99,072 KB
testcase_04 AC 81 ms
71,296 KB
testcase_05 AC 148 ms
109,184 KB
testcase_06 AC 108 ms
89,344 KB
testcase_07 AC 79 ms
73,472 KB
testcase_08 AC 77 ms
74,624 KB
testcase_09 AC 109 ms
89,984 KB
testcase_10 AC 123 ms
97,280 KB
testcase_11 AC 105 ms
90,368 KB
testcase_12 AC 92 ms
79,360 KB
testcase_13 AC 77 ms
74,240 KB
testcase_14 AC 109 ms
92,288 KB
testcase_15 AC 73 ms
72,576 KB
testcase_16 AC 76 ms
68,224 KB
testcase_17 AC 103 ms
88,832 KB
testcase_18 AC 76 ms
72,960 KB
testcase_19 AC 107 ms
91,648 KB
testcase_20 AC 99 ms
88,704 KB
testcase_21 AC 61 ms
63,232 KB
testcase_22 AC 71 ms
70,656 KB
testcase_23 AC 69 ms
68,992 KB
testcase_24 AC 71 ms
70,400 KB
testcase_25 AC 105 ms
91,008 KB
testcase_26 AC 71 ms
70,144 KB
testcase_27 AC 106 ms
91,776 KB
testcase_28 AC 78 ms
74,880 KB
testcase_29 AC 71 ms
69,760 KB
testcase_30 AC 66 ms
64,128 KB
testcase_31 AC 113 ms
91,904 KB
testcase_32 AC 69 ms
68,992 KB
testcase_33 AC 51 ms
54,272 KB
testcase_34 AC 71 ms
69,120 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