結果

問題 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
コンパイル時間 2,367 ms
コンパイル使用メモリ 212,440 KB
実行使用メモリ 127,604 KB
最終ジャッジ日時 2024-12-20 02:28:23
合計ジャッジ時間 5,321 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 151 ms
121,620 KB
testcase_06 AC 44 ms
37,600 KB
testcase_07 AC 18 ms
15,872 KB
testcase_08 AC 32 ms
29,076 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 46 ms
35,188 KB
testcase_12 WA -
testcase_13 AC 75 ms
77,508 KB
testcase_14 AC 123 ms
127,604 KB
testcase_15 WA -
testcase_16 AC 30 ms
30,700 KB
testcase_17 AC 91 ms
94,360 KB
testcase_18 AC 69 ms
71,012 KB
testcase_19 AC 108 ms
111,544 KB
testcase_20 AC 90 ms
93,416 KB
testcase_21 WA -
testcase_22 AC 45 ms
47,360 KB
testcase_23 WA -
testcase_24 AC 46 ms
45,480 KB
testcase_25 AC 106 ms
109,228 KB
testcase_26 AC 47 ms
49,924 KB
testcase_27 AC 109 ms
114,528 KB
testcase_28 AC 78 ms
79,848 KB
testcase_29 AC 48 ms
49,120 KB
testcase_30 AC 4 ms
6,816 KB
testcase_31 AC 111 ms
115,972 KB
testcase_32 AC 44 ms
46,496 KB
testcase_33 AC 2 ms
6,816 KB
testcase_34 AC 34 ms
34,344 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