結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー VvyLwVvyLw
提出日時 2023-08-05 00:27:31
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,085 bytes
コンパイル時間 1,117 ms
コンパイル使用メモリ 99,272 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-10 07:23:41
合計ジャッジ時間 2,343 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 46 ms
5,376 KB
testcase_06 AC 15 ms
5,376 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 14 ms
5,376 KB
testcase_10 AC 27 ms
5,376 KB
testcase_11 AC 18 ms
5,376 KB
testcase_12 AC 8 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 WA -
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
int main() {
	int n, k, m1, m2;
	std::cin >> n >> k >> m1;
	std::vector<int> a(m1);
	for(auto &el: a) std::cin >> el;
	std::cin >> m2;
	std::vector<int> b(m2);
	for(auto &el: b) std::cin >> el;
	// ソートされていないらしいのでソート
	std::sort(a.begin(), a.end());
	std::sort(b.begin(), b.end());
	if(m2) {
		// どれだけ汚れても最後にマットがあれば良い
		if(b.back() < a.back()) std::cout << (a.back() - 1 + k <= n ? "Yes\n" : "No\n");
		else std::cout << "Yes\n";
	}
	// マットがない場合
	else {
		int i = 0, j = 0;
    	bool ok = true;
    	while(i < n) {
    		if(std::binary_search(a.begin(), a.end(), i)) {
    			while(a[j] < i) j++;
    			// 汚段の一つ前に戻りそこからk段飛ばして進む→その地点が汚段ならダメ
    			ok &= !std::binary_search(a.begin(), a.end(), a[j] - 1 + k);
    			if(ok) {
    				i = a[j] - 1 + k;
    				continue;
    			}
    			else break;
    		}
    		i++;
    	}
    	std::cout << (i == n ? "Yes\n" : "No\n");
	}
}
0