結果

問題 No.2823 PEX (Predecessing Excluded Value) Game
ユーザー 🦠みどりむし🦠みどりむし
提出日時 2023-09-06 11:28:38
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 720 bytes
コンパイル時間 1,530 ms
コンパイル使用メモリ 124,576 KB
実行使用メモリ 7,820 KB
最終ジャッジ日時 2024-07-27 21:21:19
合計ジャッジ時間 4,250 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 49 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using i64 = std::int64_t;

void solve() {
    int n; std::cin >> n;
    std::valarray<std::pair<i64,i64>> lr(n);
    for(auto& [ l, r ] : lr) std::cin >> l >> r, --l;

    i64 grundy = 0;
	{
    	i64 blanks = 0;
    	i64 prev_r = 0;
    	for(const auto& [ l, r ] : lr) {
        	blanks += l - prev_r;
        	prev_r = r;
        	if(blanks % 2 == 1) grundy ^= r - l;
    	}
	}

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

    return;
}

int main() {
    solve();
    return 0;
}

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