結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー Today03Today03
提出日時 2023-08-05 16:41:47
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 724 bytes
コンパイル時間 2,201 ms
コンパイル使用メモリ 205,276 KB
実行使用メモリ 14,032 KB
最終ジャッジ日時 2024-12-20 02:48:26
合計ジャッジ時間 3,631 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 35 ms
8,448 KB
testcase_04 AC 5 ms
6,820 KB
testcase_05 AC 56 ms
13,556 KB
testcase_06 AC 17 ms
6,816 KB
testcase_07 AC 7 ms
6,820 KB
testcase_08 AC 10 ms
6,820 KB
testcase_09 AC 18 ms
7,424 KB
testcase_10 AC 32 ms
8,704 KB
testcase_11 AC 19 ms
6,820 KB
testcase_12 AC 8 ms
6,816 KB
testcase_13 AC 12 ms
9,684 KB
testcase_14 AC 18 ms
14,032 KB
testcase_15 AC 11 ms
9,600 KB
testcase_16 AC 6 ms
6,816 KB
testcase_17 AC 14 ms
11,136 KB
testcase_18 AC 11 ms
9,088 KB
testcase_19 AC 16 ms
12,800 KB
testcase_20 AC 13 ms
11,020 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 8 ms
7,040 KB
testcase_23 AC 7 ms
6,820 KB
testcase_24 AC 8 ms
6,912 KB
testcase_25 AC 14 ms
12,460 KB
testcase_26 AC 8 ms
7,296 KB
testcase_27 AC 16 ms
12,940 KB
testcase_28 AC 13 ms
9,856 KB
testcase_29 AC 8 ms
7,168 KB
testcase_30 AC 3 ms
6,816 KB
testcase_31 AC 18 ms
12,996 KB
testcase_32 AC 8 ms
7,040 KB
testcase_33 AC 2 ms
6,816 KB
testcase_34 AC 7 ms
6,816 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