結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー KoseTKoseT
提出日時 2023-08-04 21:35:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 911 bytes
コンパイル時間 2,176 ms
コンパイル使用メモリ 204,280 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-05-10 07:08:30
合計ジャッジ時間 3,355 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 17 ms
8,704 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 28 ms
14,208 KB
testcase_06 AC 9 ms
6,400 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 6 ms
5,632 KB
testcase_09 AC 10 ms
7,552 KB
testcase_10 AC 16 ms
9,088 KB
testcase_11 AC 10 ms
6,272 KB
testcase_12 AC 5 ms
5,376 KB
testcase_13 AC 10 ms
10,112 KB
testcase_14 AC 16 ms
14,848 KB
testcase_15 AC 10 ms
9,984 KB
testcase_16 AC 5 ms
5,632 KB
testcase_17 AC 13 ms
11,648 KB
testcase_18 AC 9 ms
9,600 KB
testcase_19 AC 15 ms
13,312 KB
testcase_20 AC 12 ms
11,520 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 6 ms
7,296 KB
testcase_23 AC 6 ms
6,656 KB
testcase_24 AC 6 ms
7,168 KB
testcase_25 AC 14 ms
13,056 KB
testcase_26 AC 7 ms
7,424 KB
testcase_27 AC 15 ms
13,568 KB
testcase_28 AC 11 ms
10,240 KB
testcase_29 AC 7 ms
7,552 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 15 ms
13,696 KB
testcase_32 AC 7 ms
7,168 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 5 ms
6,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n, k;
  cin >> n >> k;
  int m1;
  cin >> m1;
  vector<int> dirty(n+1, 0);
  for (int i=0;i<m1;++i) {
    int tmp; cin >> tmp;
    dirty[tmp] = 1;
  }
  int m2;
  cin >> m2;
  vector<int> wipe(n+1, 0);
  for (int i=0;i<m2;++i) {
    int tmp; cin >> tmp;
    wipe[tmp] = 1;
  }

  vector<vector<int>> dp(n+1, vector<int>(2, 0));
  dp[0][0] = 1;
  for (int i=0;i<n;++i) {
    if (dirty[i] == 1) {
      if (dp[i][0] == 1) dp[i][1] = 1;
      dp[i][0] = 0;
    }
    if (wipe[i] == 1) {
      if (dp[i][1] == 1) dp[i][0] = 1;
      dp[i][1] = 0;
    }
    if (dp[i][0] == 1) {
      if (i + k <= n) dp[i+k][0] = 1;
      dp[i+1][0] = 1;
    }
    if (dp[i][1] == 1) {
      if (i + k <= n)  dp[i+k][1] = 1;
      dp[i+1][1] = 1;
    }
  }
  if (dp[n][0] == 1) cout << "Yes\n";
  else cout << "No\n";
}
0