結果

問題 No.669 対決!!! 飲み比べ
ユーザー AC2KAC2K
提出日時 2023-04-26 23:17:57
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 1,342 bytes
コンパイル時間 2,354 ms
コンパイル使用メモリ 244,256 KB
実行使用メモリ 7,544 KB
最終ジャッジ日時 2024-04-27 23:47:56
合計ジャッジ時間 5,009 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
7,308 KB
testcase_01 AC 5 ms
7,380 KB
testcase_02 AC 178 ms
7,264 KB
testcase_03 AC 16 ms
7,356 KB
testcase_04 AC 180 ms
7,456 KB
testcase_05 AC 163 ms
7,528 KB
testcase_06 AC 127 ms
7,376 KB
testcase_07 AC 9 ms
7,540 KB
testcase_08 AC 69 ms
7,452 KB
testcase_09 AC 5 ms
7,424 KB
testcase_10 AC 35 ms
7,372 KB
testcase_11 AC 97 ms
7,316 KB
testcase_12 AC 62 ms
7,348 KB
testcase_13 AC 14 ms
7,504 KB
testcase_14 AC 5 ms
7,452 KB
testcase_15 AC 170 ms
7,504 KB
testcase_16 AC 85 ms
7,428 KB
testcase_17 AC 56 ms
7,544 KB
testcase_18 AC 6 ms
7,360 KB
testcase_19 AC 141 ms
7,404 KB
testcase_20 AC 55 ms
7,508 KB
testcase_21 AC 37 ms
7,304 KB
testcase_22 AC 22 ms
7,380 KB
testcase_23 AC 62 ms
7,492 KB
testcase_24 AC 8 ms
7,296 KB
testcase_25 AC 9 ms
7,460 KB
testcase_26 AC 4 ms
7,352 KB
testcase_27 AC 5 ms
7,496 KB
testcase_28 AC 13 ms
7,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#line 2 "library/src/template.hpp"
#include<bits/stdc++.h>
#define rep(i, N) for (int i = 0; i < (N); i++)
#define all(x) (x).begin(),(x).end()
#define popcount(x) __builtin_popcount(x)
using i128=__int128_t;
using ll = long long;
using ld = long double;
using graph = std::vector<std::vector<int>>;
using P = std::pair<int, int>;
constexpr int inf = 1e9;
constexpr ll infl = 1e18;
constexpr ld eps = 1e-6;
const long double pi = acos(-1);
constexpr uint64_t MOD = 1e9 + 7;
constexpr uint64_t MOD2 = 998244353;
constexpr int dx[] = { 1,0,-1,0 };
constexpr int dy[] = { 0,1,0,-1 };
template<class T>constexpr inline void chmax(T&x,T y){if(x<y)x=y;}
template<class T>constexpr inline void chmin(T&x,T y){if(x>y)x=y;}
#line 2 "main.cpp"
using namespace std;

#pragma GCC target("avx2")
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
int grundy[(int)1e6 + 1];
int cnt[(int)1e6 + 2];
int main() {
    int n, k;
    scanf("%d%d", &n, &k);
    for (int i = 1; i <= (int)1e6; ++i) {
        if (i - k - 1 >= 0) {
            --cnt[grundy[i - k - 1]];
        }
        if (i) ++cnt[grundy[i - 1]];
        int mex = -1;
        while (cnt[++mex]);
        grundy[i] = mex;
    }

    int XOR_SUM = 0;
    rep(i, n) {
        int a;
        scanf("%d", &a);
        XOR_SUM ^= grundy[a];
    }

    puts(XOR_SUM ? "YES" : "NO");
}
0