結果

問題 No.1770 N言っちゃダメゲーム (6)
ユーザー polylogKpolylogK
提出日時 2021-12-03 20:31:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 18 ms / 2,000 ms
コード長 1,373 bytes
コンパイル時間 2,546 ms
コンパイル使用メモリ 212,276 KB
実行使用メモリ 15,080 KB
最終ジャッジ日時 2024-07-06 04:01:12
合計ジャッジ時間 3,732 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 18 ms
15,020 KB
testcase_07 AC 17 ms
15,080 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 10 ms
10,864 KB
testcase_11 AC 9 ms
10,876 KB
testcase_12 AC 9 ms
10,924 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 11 ms
10,416 KB
testcase_29 AC 6 ms
6,944 KB
testcase_30 AC 9 ms
9,280 KB
testcase_31 AC 6 ms
6,940 KB
testcase_32 AC 10 ms
11,060 KB
testcase_33 AC 12 ms
11,596 KB
testcase_34 AC 12 ms
10,924 KB
testcase_35 AC 12 ms
11,544 KB
testcase_36 AC 11 ms
11,496 KB
testcase_37 AC 12 ms
11,308 KB
testcase_38 AC 10 ms
10,880 KB
testcase_39 AC 10 ms
10,912 KB
testcase_40 AC 9 ms
10,996 KB
testcase_41 AC 10 ms
10,872 KB
testcase_42 AC 9 ms
10,888 KB
testcase_43 AC 12 ms
11,188 KB
testcase_44 AC 7 ms
8,320 KB
testcase_45 AC 11 ms
11,252 KB
testcase_46 AC 14 ms
11,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std::literals::string_literals;
using i64 = std::int_fast64_t;
using std::cout;
using std::cerr;
using std::endl;
using std::cin;

#if defined(DONLINE_JUDGE)
	#define NDEBUG
#elif defined(ONLINE_JUDGE)
	#define NDEBUG
#endif

template<typename T> std::vector<T> make_v(size_t a){return std::vector<T>(a);}
template<typename T, typename... Ts> auto make_v(size_t a, Ts... ts){
  return std::vector<decltype(make_v<T>(ts...))>(a, make_v<T>(ts...));
}

int main() {
	int n, k; scanf("%d%d", &n, &k);

	std::queue<int> win_qu; // 勝ち先
	std::vector<std::vector<int>> count(n); // 禁止数字勝ち

	std::vector<int> win(n, -1); // (0, 1, 2) := (lose, win, pro)
	for(int i = n - 1; i >= 0; i--) {
		while (!win_qu.empty() and win_qu.front() > i + k) { win_qu.pop(); }

		int win_cnt = win_qu.size() + count[i].size();
		if (win_cnt == 0) {
			win[i] = 0;
			win_qu.push(i);
		} else if (win_cnt == 1) {
			int add = (win_qu.empty() ? count[i][0] : win_qu.front()) - i;

			win[i] = 2;
			if(i - add >= 0) count[i - add].push_back(i);
		} else if (win_cnt >= 2) {
			win[i] = 1;
		}
	}

	std::vector<int> ans;
	for (int i = 1; i <= k; i++) if (win[i] == 0) ans.push_back(i);
	for (int i: count[0]) ans.push_back(i);
	sort(begin(ans), end(ans));

	if (ans.empty()) ans.push_back(0);
	for (int v: ans) printf("%d\n", v);
	return 0;
}
0