結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー ineedyourlovepineedyourlovep
提出日時 2023-08-24 16:15:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 826 bytes
コンパイル時間 2,043 ms
コンパイル使用メモリ 209,768 KB
実行使用メモリ 21,376 KB
最終ジャッジ日時 2024-06-02 06:13:27
合計ジャッジ時間 4,575 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 80 ms
12,160 KB
testcase_04 AC 8 ms
6,940 KB
testcase_05 AC 141 ms
20,864 KB
testcase_06 AC 39 ms
8,448 KB
testcase_07 AC 14 ms
6,944 KB
testcase_08 AC 23 ms
7,296 KB
testcase_09 AC 48 ms
10,240 KB
testcase_10 AC 73 ms
12,672 KB
testcase_11 AC 39 ms
8,064 KB
testcase_12 AC 15 ms
6,944 KB
testcase_13 AC 47 ms
13,952 KB
testcase_14 AC 83 ms
21,376 KB
testcase_15 AC 46 ms
13,824 KB
testcase_16 AC 18 ms
7,424 KB
testcase_17 AC 58 ms
16,640 KB
testcase_18 AC 42 ms
12,928 KB
testcase_19 AC 72 ms
18,944 KB
testcase_20 AC 53 ms
16,384 KB
testcase_21 AC 3 ms
6,940 KB
testcase_22 AC 27 ms
9,728 KB
testcase_23 AC 22 ms
8,924 KB
testcase_24 AC 27 ms
9,440 KB
testcase_25 AC 65 ms
18,688 KB
testcase_26 AC 26 ms
10,040 KB
testcase_27 AC 70 ms
19,456 KB
testcase_28 AC 47 ms
14,336 KB
testcase_29 AC 26 ms
9,944 KB
testcase_30 AC 3 ms
6,944 KB
testcase_31 AC 71 ms
19,712 KB
testcase_32 AC 25 ms
9,572 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 19 ms
7,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a, n) for(int i = a; i < (n); i++)
using namespace std;
using ll = long long;
using P = pair<ll, ll>;
const int INF = 1001001001;
const ll LINF = 1001002003004005006ll;
//const int mod = 1000000007;
//const int mod = 998244353;

int main()
{
  int n, k;
  cin >> n >> k;
  int m1;
  cin >> m1;
  vector<int> a(m1);
  rep(i, 0, m1) cin >> a[i];
  map<int, int> mp;
  rep(i, 0, m1) mp[a[i]] = 1;
  int m2;
  cin >> m2;
  vector<int> b(m2);
  rep(i, 0, m2) cin >> b[i];
  map<int, int> mpp;
  rep(i, 0, m2) mpp[b[i]] = 1;
  vector<int> dp(n+1);
  dp[0] = 1;
  rep(i, 1, n+1) {
    if (dp[i-1]) dp[i] = 1;
    if (i - k >= 0) {
      if (dp[i - k]) dp[i] = 1;
    }
    if (mp[i]) dp[i] = 0;
    if (mpp[i]) dp[i] = 1;
  }
  if (dp[n]) cout << "Yes\n";
  else cout << "No\n";
  return 0;
}
0