結果
問題 | No.2402 Dirty Stairs and Shoes |
ユーザー | VvyLw |
提出日時 | 2023-08-05 00:20:36 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,084 bytes |
コンパイル時間 | 973 ms |
コンパイル使用メモリ | 99,072 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-10 07:23:39 |
合計ジャッジ時間 | 2,005 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 40 ms
6,940 KB |
testcase_06 | AC | 13 ms
6,940 KB |
testcase_07 | AC | 5 ms
6,940 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 15 ms
6,940 KB |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 2 ms
6,940 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 2 ms
6,944 KB |
testcase_32 | WA | - |
testcase_33 | AC | 2 ms
6,944 KB |
testcase_34 | AC | 2 ms
6,944 KB |
ソースコード
#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 << "No\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"); } }