結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー Today03Today03
提出日時 2023-08-05 16:41:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 724 bytes
コンパイル時間 2,471 ms
コンパイル使用メモリ 204,540 KB
実行使用メモリ 13,996 KB
最終ジャッジ日時 2024-05-10 07:25:09
合計ジャッジ時間 3,674 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 34 ms
8,448 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 55 ms
13,628 KB
testcase_06 AC 18 ms
6,272 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 10 ms
5,504 KB
testcase_09 AC 18 ms
7,296 KB
testcase_10 AC 30 ms
8,704 KB
testcase_11 AC 19 ms
6,144 KB
testcase_12 AC 9 ms
5,376 KB
testcase_13 AC 12 ms
9,728 KB
testcase_14 AC 18 ms
13,996 KB
testcase_15 AC 12 ms
9,600 KB
testcase_16 AC 6 ms
5,760 KB
testcase_17 AC 14 ms
11,136 KB
testcase_18 AC 12 ms
9,088 KB
testcase_19 AC 17 ms
12,624 KB
testcase_20 AC 13 ms
11,040 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 8 ms
7,040 KB
testcase_23 AC 7 ms
6,528 KB
testcase_24 AC 8 ms
6,912 KB
testcase_25 AC 15 ms
12,476 KB
testcase_26 AC 9 ms
7,296 KB
testcase_27 AC 16 ms
12,920 KB
testcase_28 AC 14 ms
9,856 KB
testcase_29 AC 8 ms
7,168 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 17 ms
13,060 KB
testcase_32 AC 8 ms
7,040 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 6 ms
6,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
  int n,k;
  cin>>n>>k;
  vector<int> state(n+1);
  vector<vector<int>> dp(n+1,vector<int>(2));
  for (int i=1;i<=2;i++) {
    int m;
    cin>>m;
    for (int j=0;j<m;j++) {
      int a;
      cin>>a;
      state[a]=i;
    }
  }
  dp[0][0]=1;
  for (int i=0;i<n;i++) {
    if (state[i]==1) {
      dp[i+1][1]=1;
      if (i+k<=n) {
        dp[i+k][1]=1;
      }
    }
    else if (state[i]==2) {
      dp[i+1][0]=1;
      if (i+k<=n) {
        dp[i+k][0]=1;
      }
    }
    else {
      for (int j=0;j<2;j++) {
        dp[i+1][j]|=dp[i][j];
        if (i+k<=n) {
          dp[i+k][j]|=dp[i][j];
        }
      }
    }
  }
  cout<<(dp[n][0]?"Yes":"No")<<endl;
}
0