結果

問題 No.1770 N言っちゃダメゲーム (6)
ユーザー 👑 hitonanodehitonanode
提出日時 2021-12-02 01:12:41
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 1,125 bytes
コンパイル時間 1,035 ms
コンパイル使用メモリ 92,432 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-18 10:06:50
合計ジャッジ時間 2,780 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 3 ms
4,376 KB
testcase_07 AC 3 ms
4,376 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 1 ms
4,376 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 2 ms
4,380 KB
testcase_16 AC 1 ms
4,376 KB
testcase_17 AC 2 ms
4,380 KB
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 1 ms
4,376 KB
testcase_21 AC 1 ms
4,380 KB
testcase_22 AC 2 ms
4,376 KB
testcase_23 AC 2 ms
4,380 KB
testcase_24 AC 2 ms
4,380 KB
testcase_25 AC 2 ms
4,376 KB
testcase_26 AC 2 ms
4,376 KB
testcase_27 AC 2 ms
4,380 KB
testcase_28 AC 3 ms
4,376 KB
testcase_29 AC 2 ms
4,376 KB
testcase_30 AC 2 ms
4,380 KB
testcase_31 AC 3 ms
4,380 KB
testcase_32 AC 3 ms
4,376 KB
testcase_33 AC 2 ms
4,380 KB
testcase_34 AC 3 ms
4,376 KB
testcase_35 AC 3 ms
4,376 KB
testcase_36 AC 3 ms
4,380 KB
testcase_37 AC 3 ms
4,376 KB
testcase_38 AC 3 ms
4,376 KB
testcase_39 AC 3 ms
4,380 KB
testcase_40 AC 3 ms
4,376 KB
testcase_41 AC 3 ms
4,376 KB
testcase_42 AC 3 ms
4,380 KB
testcase_43 AC 3 ms
4,380 KB
testcase_44 AC 3 ms
4,380 KB
testcase_45 AC 3 ms
4,380 KB
testcase_46 AC 3 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3,unroll-loops")
#include <iostream>
#include <vector>
using namespace std;

int main() {
    cin.tie(nullptr), ios::sync_with_stdio(false);
    int N, K;
    cin >> N >> K;

    constexpr int All = -1, None = -2;
    vector<int> can_be_zero(N, All);
    for (int n = N - 1; n > 0; --n) {
        if (can_be_zero[n] == All) {
            for (int i = 1; i <= K; ++i) {
                if (n - i < 0) break;
                if (can_be_zero[n - i] == All) can_be_zero[n - i] = i;
                else {
                    can_be_zero[n - i] = None;
                }
            }
        } else if (can_be_zero[n] != None) {
            int i = can_be_zero[n];
            if (n - i >= 0) {
                if (can_be_zero[n - i] == All) can_be_zero[n - i] = i;
                else {
                    can_be_zero[n - i] = None;
                }
            }
        }
    }

    vector<int> ret;
    for (int i = 1; i <= K; ++i) {
        if (can_be_zero[i] == i or can_be_zero[i] == All) ret.push_back(i);
    }
    if (ret.empty()) ret.push_back(0);
    for (auto x : ret) cout << x << '\n';
}
0