結果
問題 | No.2823 PEX (Predecessing Excluded Value) Game |
ユーザー |
![]() |
提出日時 | 2023-09-06 11:26:59 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 718 bytes |
コンパイル時間 | 1,341 ms |
コンパイル使用メモリ | 123,328 KB |
実行使用メモリ | 7,924 KB |
最終ジャッジ日時 | 2024-07-27 21:21:22 |
合計ジャッジ時間 | 3,087 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 49 WA * 1 |
ソースコード
#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); }