結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー ineedyourlovepineedyourlovep
提出日時 2023-08-24 16:15:13
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 826 bytes
コンパイル時間 2,149 ms
コンパイル使用メモリ 209,488 KB
実行使用メモリ 21,248 KB
最終ジャッジ日時 2024-12-23 00:24:22
合計ジャッジ時間 5,367 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 99 ms
12,160 KB
testcase_04 AC 10 ms
5,248 KB
testcase_05 AC 171 ms
20,864 KB
testcase_06 AC 46 ms
8,336 KB
testcase_07 AC 15 ms
5,376 KB
testcase_08 AC 27 ms
7,296 KB
testcase_09 AC 54 ms
10,272 KB
testcase_10 AC 86 ms
12,672 KB
testcase_11 AC 47 ms
8,064 KB
testcase_12 AC 18 ms
5,504 KB
testcase_13 AC 53 ms
13,952 KB
testcase_14 AC 93 ms
21,248 KB
testcase_15 AC 54 ms
13,824 KB
testcase_16 AC 20 ms
7,424 KB
testcase_17 AC 67 ms
16,512 KB
testcase_18 AC 48 ms
13,184 KB
testcase_19 AC 81 ms
18,944 KB
testcase_20 AC 64 ms
16,512 KB
testcase_21 AC 3 ms
5,248 KB
testcase_22 AC 32 ms
9,692 KB
testcase_23 AC 28 ms
8,928 KB
testcase_24 AC 32 ms
9,344 KB
testcase_25 AC 78 ms
18,560 KB
testcase_26 AC 32 ms
10,044 KB
testcase_27 AC 82 ms
19,456 KB
testcase_28 AC 55 ms
14,336 KB
testcase_29 AC 32 ms
10,072 KB
testcase_30 AC 4 ms
5,248 KB
testcase_31 AC 82 ms
19,584 KB
testcase_32 AC 33 ms
9,576 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 24 ms
7,880 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