結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー t98slidert98slider
提出日時 2023-08-04 21:29:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 1,041 bytes
コンパイル時間 1,706 ms
コンパイル使用メモリ 172,040 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-23 01:39:36
合計ジャッジ時間 3,259 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

template<class T> istream& operator >> (istream& is, vector<T>& vec) {
    for(T& x : vec) is >> x;
    return is;
}

template<class T> ostream& operator << (ostream& os, const vector<T>& vec) {
    if(vec.empty()) return os;
    os << vec[0];
    for(auto it = vec.begin(); ++it != vec.end(); ) os << ' ' << *it;
    return os;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, k, m1, m2;
    cin >> n >> k >> m1;
    vector<int> a(m1);
    cin >> a >> m2;
    vector<int> b(m2);
    cin >> b;
    vector<bool> dp(n + 1);
    sort(a.begin(), a.end());
    sort(b.begin(), b.end());
    dp[0] = true;
    for(int i = 0; i < n; i++){
        if(binary_search(a.begin(), a.end(), i))continue;
        if(binary_search(b.begin(), b.end(), i)){
            dp[i] = true;
        }
        if(dp[i]){
            if(i + 1 <= n) dp[i + 1] = true;
            if(i + k <= n) dp[i + k] = true;
        }
    }
    cout << (dp[n] ? "Yes" : "No") << '\n';
}
0