結果

問題 No.2823 PEX (Predecessing Excluded Value) Game
ユーザー 🦠みどりむし
提出日時 2024-07-28 10:18:39
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 716 bytes
コンパイル時間 1,234 ms
コンパイル使用メモリ 106,624 KB
実行使用メモリ 7,800 KB
最終ジャッジ日時 2024-07-28 10:18:43
合計ジャッジ時間 3,751 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 51
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdint>
#include <numeric>
#include <iostream>
#include <vector>
#include <map>
#include <ranges>

using i64 = std::int64_t;

signed main() {
    int n; std::cin >> n;
    std::vector<std::pair<i64, i64>> lr(n);
    for(auto& [ l, r ] : lr) std::cin >> l >> r, --l;

    i64 grundy = 0;

    i64 blanks = 0, prev_r = 0, con = 0;
    for(const auto [ l, r ] : lr) {
        blanks += l - prev_r;

        if(prev_r != l) grundy ^= con, con = 0;
        if(blanks % 2 == 1) con += r - l;

        prev_r = r;
    }
    grundy ^= con;

    std::cout << (grundy != 0 ? "First\n" : "Second\n");
}

__attribute__((constructor)) inline void fast_io() { std::ios::sync_with_stdio(false), std::cin.tie(nullptr); }
0