結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー mattu34mattu34
提出日時 2023-09-08 00:57:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 918 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 96,384 KB
最終ジャッジ日時 2024-06-25 18:01:52
合計ジャッジ時間 5,098 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,272 KB
testcase_01 AC 46 ms
54,400 KB
testcase_02 AC 45 ms
54,272 KB
testcase_03 AC 143 ms
90,976 KB
testcase_04 AC 91 ms
78,208 KB
testcase_05 AC 162 ms
96,384 KB
testcase_06 AC 105 ms
85,732 KB
testcase_07 AC 105 ms
78,976 KB
testcase_08 AC 111 ms
80,896 KB
testcase_09 AC 119 ms
87,024 KB
testcase_10 AC 150 ms
89,568 KB
testcase_11 AC 108 ms
86,144 KB
testcase_12 AC 101 ms
79,104 KB
testcase_13 AC 104 ms
87,936 KB
testcase_14 AC 113 ms
94,080 KB
testcase_15 AC 99 ms
87,552 KB
testcase_16 AC 85 ms
80,640 KB
testcase_17 AC 107 ms
90,496 KB
testcase_18 AC 102 ms
86,912 KB
testcase_19 AC 116 ms
93,064 KB
testcase_20 AC 105 ms
90,496 KB
testcase_21 AC 59 ms
65,280 KB
testcase_22 AC 92 ms
83,200 KB
testcase_23 AC 86 ms
82,048 KB
testcase_24 AC 92 ms
82,688 KB
testcase_25 AC 108 ms
92,648 KB
testcase_26 AC 90 ms
83,840 KB
testcase_27 AC 111 ms
93,320 KB
testcase_28 AC 102 ms
88,532 KB
testcase_29 AC 87 ms
83,456 KB
testcase_30 AC 62 ms
66,816 KB
testcase_31 AC 115 ms
93,440 KB
testcase_32 AC 89 ms
82,816 KB
testcase_33 AC 47 ms
54,912 KB
testcase_34 AC 88 ms
81,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
import heapq
import bisect
import itertools


INF = float("inf")
MOD = 998244353
mod = 998244353

N, K = map(int, input().split())
M = int(input())
A = list(map(int, input().split()))
state = [0] * (N + 1)
for a in A:
    state[a] = -1
M = int(input())
B = list(map(int, input().split()))
for b in B:
    state[b] = 1

dp = [[False] * 2 for _ in range(N + 1)]
dp[0][0] = True
for i in range(N):
    for j in range(2):
        if state[i + 1] == 0:
            dp[i + 1][j] |= dp[i][j]
        elif state[i + 1] == 1:
            dp[i + 1][0] |= dp[i][j]
        else:
            dp[i + 1][1] |= dp[i][j]

        if i + K <= N:
            if state[i + K] == 0:
                dp[i + K][j] |= dp[i][j]
            elif state[i + K] == 1:
                dp[i + K][0] |= dp[i][j]
            else:
                dp[i + K][1] |= dp[i][j]
if dp[N][0]:
    print("Yes")
else:
    print("No")
0