結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー mattu34mattu34
提出日時 2023-09-08 00:54:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 914 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 817,920 KB
最終ジャッジ日時 2024-06-25 17:59:42
合計ジャッジ時間 5,812 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 32 ms
11,008 KB
testcase_02 AC 31 ms
11,008 KB
testcase_03 AC 288 ms
25,700 KB
testcase_04 AC 60 ms
12,416 KB
testcase_05 AC 419 ms
34,412 KB
testcase_06 AC 139 ms
17,416 KB
testcase_07 AC 86 ms
14,208 KB
testcase_08 AC 164 ms
32,768 KB
testcase_09 AC 195 ms
20,344 KB
testcase_10 AC 326 ms
27,852 KB
testcase_11 AC 164 ms
18,460 KB
testcase_12 AC 82 ms
13,824 KB
testcase_13 AC 893 ms
475,776 KB
testcase_14 MLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

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 = [[0] * 2 for _ in range(N + 1)]
dp[0][0] = 1
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] > 0:
    print("Yes")
else:
    print("No")
0