結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー KKT89KKT89
提出日時 2023-08-04 21:31:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 18 ms / 2,000 ms
コード長 1,341 bytes
コンパイル時間 2,894 ms
コンパイル使用メモリ 216,232 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2024-05-10 07:06:51
合計ジャッジ時間 4,109 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 12 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 18 ms
6,016 KB
testcase_06 AC 6 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 7 ms
5,376 KB
testcase_10 AC 11 ms
5,376 KB
testcase_11 AC 7 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 6 ms
6,144 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 4 ms
5,376 KB
testcase_19 AC 6 ms
5,760 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 5 ms
5,760 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 5 ms
5,888 KB
testcase_28 AC 5 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 5 ms
5,888 KB
testcase_32 AC 4 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef unsigned long long int ull;

mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
ll myRand(ll B) {
    return (ull)rng() % B;
}
inline double time() {
    return static_cast<long double>(chrono::duration_cast<chrono::nanoseconds>(chrono::steady_clock::now().time_since_epoch()).count()) * 1e-9;
}

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n,k; cin >> n >> k;
    vector<int> a(n+1, -1);
    int m; cin >> m;
    for (int i = 0; i < m; ++i) {
        int b; cin >> b;
        a[b] = 1;
    }
    cin >> m;
    for (int i = 0; i < m; ++i) {
        int b; cin >> b;
        a[b] = 0;
    }
    vector<vector<int>> dp(2, vector<int>(n+1));
    dp[0][0] = 1;
    for (int i = 0; i < n; ++i) {
        for (int j = 0; j < 2; ++j) {
            if (!dp[j][i]) continue;
            {
                int nxt = j;
                if (a[i+1] != -1) nxt = a[i+1];
                dp[nxt][i+1] = 1;
            }
            if (i+k <= n) {
                int nxt = j;
                if (a[i+k] != -1) nxt = a[i+k];
                dp[nxt][i+k] = 1;
            }
        }
    }
    if (dp[0][n]) {
        cout << "Yes" << endl;
    }
    else {
        cout << "No" << endl;
    }
}
0