結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-08-04 21:34:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 975 bytes
コンパイル時間 1,964 ms
コンパイル使用メモリ 210,228 KB
実行使用メモリ 127,744 KB
最終ジャッジ日時 2024-05-10 07:08:13
合計ジャッジ時間 4,642 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 145 ms
121,600 KB
testcase_06 AC 44 ms
37,632 KB
testcase_07 AC 14 ms
15,872 KB
testcase_08 AC 28 ms
29,184 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 40 ms
35,200 KB
testcase_12 WA -
testcase_13 AC 69 ms
77,440 KB
testcase_14 AC 115 ms
127,744 KB
testcase_15 WA -
testcase_16 AC 29 ms
30,720 KB
testcase_17 AC 87 ms
94,464 KB
testcase_18 AC 67 ms
71,040 KB
testcase_19 AC 102 ms
111,872 KB
testcase_20 AC 84 ms
93,696 KB
testcase_21 WA -
testcase_22 AC 41 ms
47,360 KB
testcase_23 WA -
testcase_24 AC 38 ms
45,568 KB
testcase_25 AC 99 ms
109,312 KB
testcase_26 AC 44 ms
50,048 KB
testcase_27 AC 99 ms
114,688 KB
testcase_28 AC 73 ms
79,872 KB
testcase_29 AC 43 ms
49,152 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 103 ms
115,968 KB
testcase_32 AC 39 ms
46,464 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 29 ms
34,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

int main(){

    ll N, K, M, x;
    cin >> N >> K;
    vector<bool> A(N+1), B(N+1);
    cin >> M;
    for (int i=0; i<M; i++){
        cin >> x;
        A[x] = 1;
    }
    cin >> M;
    for (int i=0; i<M; i++){
        cin >> x;
        B[x] = 1;
    }
    vector<deque<bool>> dp(N+1, deque<bool>(2));
    dp[0][0] = 1;

    for (int i=1; i<=N; i++){
        if (A[i] == 1){
            dp[i][1] |= dp[i-1][0];
            if (i-K>=0) dp[i][1] |= dp[i-K][0];
        }
        else if (B[i] == 1){
            dp[i][0] |= dp[i-1][0] | dp[i-1][1];
            if (i-K>=0) dp[i][0] |= dp[i-K][0] | dp[i-K][1];
        }
        else{
            dp[i][0] |= dp[i-1][0];
            dp[i][1] |= dp[i-1][1];
            if (i-K>=0){
                dp[i][0] |= dp[i-K][0];
                dp[i][1] |= dp[i-K][1];
            }
        }
    }

    cout << (dp[N][0] ? "Yes" : "No") << endl;

    return 0;
}
0