結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー nystnyst
提出日時 2023-08-04 22:22:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 1,739 bytes
コンパイル時間 3,854 ms
コンパイル使用メモリ 200,648 KB
実行使用メモリ 30,744 KB
最終ジャッジ日時 2024-12-20 02:42:12
合計ジャッジ時間 6,696 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 99 ms
15,488 KB
testcase_04 AC 9 ms
6,816 KB
testcase_05 AC 155 ms
26,380 KB
testcase_06 AC 42 ms
10,112 KB
testcase_07 AC 17 ms
6,816 KB
testcase_08 AC 32 ms
8,704 KB
testcase_09 AC 51 ms
12,160 KB
testcase_10 AC 97 ms
16,256 KB
testcase_11 AC 50 ms
10,112 KB
testcase_12 AC 18 ms
6,816 KB
testcase_13 AC 81 ms
19,712 KB
testcase_14 AC 137 ms
30,744 KB
testcase_15 AC 35 ms
14,336 KB
testcase_16 AC 29 ms
9,344 KB
testcase_17 AC 98 ms
23,296 KB
testcase_18 AC 70 ms
18,176 KB
testcase_19 AC 117 ms
27,196 KB
testcase_20 AC 93 ms
23,168 KB
testcase_21 AC 3 ms
6,820 KB
testcase_22 AC 46 ms
13,056 KB
testcase_23 AC 20 ms
9,088 KB
testcase_24 AC 46 ms
12,672 KB
testcase_25 AC 113 ms
26,620 KB
testcase_26 AC 45 ms
13,696 KB
testcase_27 AC 114 ms
27,856 KB
testcase_28 AC 80 ms
20,224 KB
testcase_29 AC 43 ms
13,312 KB
testcase_30 AC 3 ms
6,816 KB
testcase_31 AC 120 ms
28,160 KB
testcase_32 AC 44 ms
12,800 KB
testcase_33 AC 2 ms
6,820 KB
testcase_34 AC 33 ms
10,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <iomanip>
#include <algorithm>
#include <map>
#include <cmath>
#include <bitset>
#include <string>
#include <queue>
#include <stack>
#include <set>
#include <tuple>
#include <atcoder/all>
#include <sstream> // std::stringstream
#include <regex>
#include <fstream>
using namespace atcoder;
using mint = modint998244353;
//using mint = modint1000000007;
using namespace std;
using ll = long long;
static const double pi = 3.141592653589793;
const int INF = (1 << 29);
const ll mod = 998244353;
// ifstream ifs(""); ファイルはワークスペースのトップにおく

int main() {

    int n,k;
    cin >> n >> k;
    int m1;cin >> m1;
    vector<int> a(m1);
    map<int,bool> mp;
    for(int i=0;i<m1;i++) {
        cin >> a[i];
        mp[a[i]] = true;
    }
    int m2;cin >> m2;
    vector<int> b(m2);
    map<int,bool> mp2;
    for(int i=0;i<m2;i++) {
        cin >> b[i];
        mp2[b[i]] = true;
    }
    vector dp(n+1,vector<int>(2,0));
    //dp[n][0 or 1] 靴が汚れているか

    dp[0][0] = true;
    for(int i=0;i<n;i++){
        if(dp[i][0]){
            if(i+1<=n) {
                if(mp[i+1]) dp[i+1][1] = true;
                else dp[i+1][0] = true;
            }
            if(i+k<=n){
                if(mp[i+k]) dp[i+k][1] = true;
                else dp[i+k][0] = true;
            }
        }
        if(dp[i][1]){
            if(i+1<=n){
                if(mp2[i+1]) dp[i+1][0] = true;
                else dp[i+1][1] = true;
            }
            if(i+k<=n){
                if(mp2[i+k]) dp[i+k][0] = true;
                else dp[i+k][1] = true;
            }
        }
    }

    if(dp[n][0]) cout << "Yes" << endl;
    else cout << "No" << endl;

} 
0