結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー HaaHaa
提出日時 2023-08-04 21:45:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,146 bytes
コンパイル時間 1,568 ms
コンパイル使用メモリ 176,796 KB
実行使用メモリ 29,312 KB
最終ジャッジ日時 2024-05-10 07:17:49
合計ジャッジ時間 3,253 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 67 ms
17,536 KB
testcase_04 AC 7 ms
5,376 KB
testcase_05 AC 123 ms
29,312 KB
testcase_06 AC 32 ms
11,136 KB
testcase_07 AC 11 ms
6,016 KB
testcase_08 AC 18 ms
8,320 KB
testcase_09 AC 33 ms
12,928 KB
testcase_10 AC 60 ms
17,408 KB
testcase_11 AC 35 ms
11,136 KB
testcase_12 AC 15 ms
6,272 KB
testcase_13 AC 21 ms
15,488 KB
testcase_14 AC 32 ms
23,552 KB
testcase_15 AC 20 ms
15,232 KB
testcase_16 AC 8 ms
7,680 KB
testcase_17 AC 25 ms
18,304 KB
testcase_18 AC 19 ms
14,336 KB
testcase_19 AC 28 ms
20,992 KB
testcase_20 AC 24 ms
17,920 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 13 ms
10,496 KB
testcase_23 AC 11 ms
9,728 KB
testcase_24 AC 12 ms
10,240 KB
testcase_25 AC 28 ms
20,480 KB
testcase_26 AC 13 ms
11,008 KB
testcase_27 AC 28 ms
21,376 KB
testcase_28 AC 21 ms
15,744 KB
testcase_29 AC 13 ms
10,752 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 30 ms
21,760 KB
testcase_32 AC 12 ms
10,368 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll,ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
#define REP(i,n) for(int i=0;i<(n);i++)
#define ALL(v) v.begin(),v.end()
template<typename T> bool chmax(T& x, const T& y){return (x<y)?(x=y,true):false;};
template<typename T> bool chmin(T& x, const T& y){return (x>y)?(x=y,true):false;};
constexpr ll MOD=998244353;
constexpr ll INF=2e18;

int main(){
    int n, k; cin >> n >> k;
    int m; cin >> m;
    VI a(m); REP(i,m) cin >> a[i];
    int l; cin >> l;
    VI b(l); REP(i,l) cin >> b[i];
    set<int> as, bs;
    REP(i,m) as.insert(a[i]);
    REP(i,l) bs.insert(b[i]);
    VVI dp(n*2+10,VI(2,0));
    dp[0][0]=1;
    REP(i,n){
        if(as.count(i)){
            dp[i+1][1]=1;
            dp[i+k][1]=1;
        }
        else if(bs.count(i)){
            dp[i+1][0]=1;
            dp[i+k][0]=1;
        }
        else{
            REP(j,2){
                dp[i+1][j]=dp[i][j];
                dp[i+k][j]=dp[i][j];
            }
        }
    }
    if(dp[n][0])
        cout << "Yes" << endl;
    else
        cout << "No" << endl;
    return 0;
}
0