結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー Meet BrahmbhattMeet Brahmbhatt
提出日時 2023-08-06 05:03:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 1,417 bytes
コンパイル時間 2,029 ms
コンパイル使用メモリ 172,236 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-05-10 07:25:41
合計ジャッジ時間 3,205 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 21 ms
8,704 KB
testcase_04 AC 5 ms
5,376 KB
testcase_05 AC 36 ms
14,208 KB
testcase_06 AC 12 ms
6,400 KB
testcase_07 AC 6 ms
5,376 KB
testcase_08 AC 9 ms
5,632 KB
testcase_09 AC 13 ms
7,680 KB
testcase_10 AC 21 ms
9,088 KB
testcase_11 AC 12 ms
6,272 KB
testcase_12 AC 6 ms
5,376 KB
testcase_13 AC 15 ms
10,112 KB
testcase_14 AC 25 ms
14,848 KB
testcase_15 AC 15 ms
9,984 KB
testcase_16 AC 7 ms
5,632 KB
testcase_17 AC 18 ms
11,776 KB
testcase_18 AC 14 ms
9,600 KB
testcase_19 AC 21 ms
13,312 KB
testcase_20 AC 18 ms
11,648 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 10 ms
7,168 KB
testcase_23 AC 9 ms
6,784 KB
testcase_24 AC 10 ms
7,168 KB
testcase_25 AC 21 ms
12,928 KB
testcase_26 AC 11 ms
7,552 KB
testcase_27 AC 22 ms
13,568 KB
testcase_28 AC 16 ms
10,368 KB
testcase_29 AC 10 ms
7,424 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 22 ms
13,696 KB
testcase_32 AC 10 ms
7,296 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 7 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *  - Meet Brahmbhatt
 *  - Hard work always pays off
**/
#include"bits/stdc++.h"
using namespace std;

#ifdef MeetBrahmbhatt
#include "debug.h"
#else
#define dbg(...) 72
#endif

#define endl "\n"
#define int long long

const long long INF = 4e18;

void solve() {
    int n, k;
    cin >> n >> k;
    int m1;
    cin >> m1;
    vector<int> S(n + 1);
    for (int i = 0; i < m1; i++) {
        int x;
        cin >> x;
        S[x] = 1;
    }
    int m2;
    cin >> m2;
    for (int i = 0; i < m2; i++) {
        int x;
        cin >> x;
        S[x] = -1;
    }
    vector<vector<int>> dp(n + 1, vector<int>(2));
    dp[0][0] = 1;
    for (int i = 0; i < n; i++) {
        for (int x : vector<int> {i + 1, i + k}) {
            if (x <= n) {
                for (int j = 0; j < 2; j++) {
                    if (!dp[i][j]) {
                        continue;
                    }
                    if (S[x] == 1) {
                        dp[x][1] = 1;
                    } else if (S[x] == -1) {
                        dp[x][0] = 1;
                    } else {
                        dp[x][j] = dp[i][j];
                    }
                }
            }
        }
    }
    cout << (dp.back()[0] == 1 ? "Yes" : "No");
}

signed main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout << fixed << setprecision(9);
    int tt = 1;
    // cin >> tt;
    while (tt--) solve();
    return 0;
}
0