結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー FromBooskaFromBooska
提出日時 2023-08-05 11:11:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 859 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 101,356 KB
最終ジャッジ日時 2024-05-10 07:24:56
合計ジャッジ時間 2,702 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,248 KB
testcase_01 AC 35 ms
52,464 KB
testcase_02 AC 34 ms
52,744 KB
testcase_03 AC 66 ms
87,328 KB
testcase_04 AC 46 ms
63,444 KB
testcase_05 AC 80 ms
101,356 KB
testcase_06 AC 51 ms
74,388 KB
testcase_07 AC 44 ms
65,404 KB
testcase_08 AC 47 ms
67,384 KB
testcase_09 AC 55 ms
72,980 KB
testcase_10 AC 65 ms
86,952 KB
testcase_11 AC 50 ms
75,148 KB
testcase_12 AC 44 ms
66,892 KB
testcase_13 AC 45 ms
63,716 KB
testcase_14 AC 46 ms
62,356 KB
testcase_15 AC 40 ms
59,968 KB
testcase_16 AC 44 ms
61,648 KB
testcase_17 AC 48 ms
62,468 KB
testcase_18 AC 44 ms
62,272 KB
testcase_19 AC 45 ms
63,304 KB
testcase_20 AC 44 ms
62,280 KB
testcase_21 AC 38 ms
59,096 KB
testcase_22 AC 41 ms
62,860 KB
testcase_23 AC 40 ms
60,880 KB
testcase_24 AC 41 ms
62,696 KB
testcase_25 AC 43 ms
62,484 KB
testcase_26 AC 42 ms
61,832 KB
testcase_27 AC 44 ms
62,008 KB
testcase_28 AC 47 ms
63,360 KB
testcase_29 AC 42 ms
60,012 KB
testcase_30 AC 40 ms
61,588 KB
testcase_31 AC 50 ms
63,984 KB
testcase_32 AC 43 ms
61,136 KB
testcase_33 AC 33 ms
52,440 KB
testcase_34 AC 44 ms
62,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# ゴールからK段以内に靴ふきマットがあれば常に可能
# K段以内に靴ふきマットがなくても汚れていなければ可能
# 解析解ではなくdpでやるしかないか
# K歩前まで何度も戻る必要があるのでセグメントツリーか
# 問題誤読、1歩かK歩なのでセグメントツリー必要ない

N, K = map(int, input().split())
M1 = int(input())
A = set(map(int, input().split()))
M2 = int(input())
B = set(map(int, input().split()))
INF = 10**6
stairs = [INF]*(N+1)
stairs[0] = 0

for i in range(1, N+1):
    if i in A:
        continue
    elif i in B:
        stairs[i] = 0
    else:
        if i-K >= 0:
            stairs[i] = min(stairs[i-1], stairs[i-K])
        else:
            stairs[i] = stairs[i-1]
        
#print(stairs)

if stairs[N] == 0:
    print('Yes')
else:
    print('No')



0