結果

問題 No.814 ジジ抜き
ユーザー tottoripapertottoripaper
提出日時 2019-04-13 13:44:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 314 ms / 3,000 ms
コード長 917 bytes
コンパイル時間 1,687 ms
コンパイル使用メモリ 166,540 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2024-09-15 11:04:51
合計ジャッジ時間 9,087 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 6 ms
5,376 KB
testcase_04 AC 314 ms
10,368 KB
testcase_05 AC 308 ms
10,368 KB
testcase_06 AC 311 ms
10,368 KB
testcase_07 AC 159 ms
6,912 KB
testcase_08 AC 304 ms
10,368 KB
testcase_09 AC 225 ms
8,320 KB
testcase_10 AC 301 ms
10,240 KB
testcase_11 AC 303 ms
10,112 KB
testcase_12 AC 155 ms
6,912 KB
testcase_13 AC 157 ms
6,912 KB
testcase_14 AC 236 ms
8,576 KB
testcase_15 AC 121 ms
6,016 KB
testcase_16 AC 122 ms
6,016 KB
testcase_17 AC 252 ms
8,832 KB
testcase_18 AC 212 ms
8,064 KB
testcase_19 AC 305 ms
10,112 KB
testcase_20 AC 158 ms
6,912 KB
testcase_21 AC 176 ms
7,424 KB
testcase_22 AC 256 ms
9,088 KB
testcase_23 AC 132 ms
6,400 KB
testcase_24 AC 226 ms
8,448 KB
testcase_25 AC 185 ms
7,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define fst(t) std::get<0>(t)
#define snd(t) std::get<1>(t)
#define thd(t) std::get<2>(t)
#define unless(p) if(!(p))
#define until(p) while(!(p))

using ll = std::int64_t;
using P = std::tuple<int,int>;

int N;
ll K[300100], L[300100], D[300100];

int main(){
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    std::cin >> N;

    for(int i=0;i<N;++i){
        std::cin >> K[i] >> L[i] >> D[i];
    }

    ll lb = 0, ub = 1001001001001001001;

    while(ub - lb > 1){
        ll m = (lb + ub) / 2, eo = 0;
        
        for(int i=0;i<N;++i){
            ll l = L[i], r = l + (K[i] - 1) * (1ll << D[i]),
                n = (std::min(m, r + 1) - std::min(m, l) + (1ll << D[i]) - 1) / (1ll << D[i]);

            eo = eo ^ (n & 1);
        }

        if(eo == 0){
            lb = m;
        }else{
            ub = m;
        }
    }

    std::cout << lb << std::endl;
}
0