結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー ripityripity
提出日時 2023-08-04 21:42:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 663 bytes
コンパイル時間 4,399 ms
コンパイル使用メモリ 262,504 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-05-10 07:14:08
合計ジャッジ時間 5,413 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 30 ms
8,832 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 50 ms
14,336 KB
testcase_06 AC 16 ms
6,400 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 9 ms
5,760 KB
testcase_09 AC 16 ms
7,680 KB
testcase_10 AC 27 ms
9,216 KB
testcase_11 AC 19 ms
6,144 KB
testcase_12 AC 8 ms
5,376 KB
testcase_13 AC 13 ms
10,240 KB
testcase_14 AC 19 ms
14,848 KB
testcase_15 AC 11 ms
10,112 KB
testcase_16 AC 6 ms
5,888 KB
testcase_17 AC 14 ms
11,648 KB
testcase_18 AC 11 ms
9,472 KB
testcase_19 AC 16 ms
13,440 KB
testcase_20 AC 13 ms
11,776 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 8 ms
7,296 KB
testcase_23 AC 6 ms
6,912 KB
testcase_24 AC 7 ms
7,296 KB
testcase_25 AC 15 ms
13,184 KB
testcase_26 AC 8 ms
7,680 KB
testcase_27 AC 16 ms
13,696 KB
testcase_28 AC 11 ms
10,496 KB
testcase_29 AC 7 ms
7,552 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 16 ms
13,696 KB
testcase_32 AC 7 ms
7,424 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 6 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#include <atcoder/all>
using namespace atcoder;

int main() {
	int N, K;
	cin >> N >> K;
	vector<int> mat(N+1), dirty(N+1);
	vector<vector<int>> dp(N+1, vector<int>(2));
	int M;
	cin >> M;
	while(M--) {
		int A;
		cin >> A;
		dirty[A] = true;
	}
	cin >> M;
	while(M--) {
		int B;
		cin >> B;
		mat[B] = true;
	}
	dp[0][0] = true;
	for( int i = 0; i < N; i++ ) {
		for( int k : {1, K} ) {
			if( i+k <= N ) {
				dp[i+k][0] |= dp[i][0]&(!dirty[i+k]);
				dp[i+k][0] |= mat[i+k];
				dp[i+k][1] |= dp[i][0]&dirty[i+k];
				dp[i+k][1] |= dp[i][1]&(!mat[i+k]);
			}
		}
	}
	cout << ( dp[N][0] ? "Yes" : "No" ) << endl;
}
0