結果

問題 No.814 ジジ抜き
ユーザー finefine
提出日時 2019-04-12 23:26:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 321 ms / 3,000 ms
コード長 652 bytes
コンパイル時間 1,715 ms
コンパイル使用メモリ 168,716 KB
実行使用メモリ 10,112 KB
最終ジャッジ日時 2024-09-15 06:19:52
合計ジャッジ時間 7,436 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 4 ms
5,376 KB
testcase_04 AC 321 ms
10,112 KB
testcase_05 AC 319 ms
10,112 KB
testcase_06 AC 312 ms
9,984 KB
testcase_07 AC 92 ms
6,656 KB
testcase_08 AC 148 ms
9,856 KB
testcase_09 AC 226 ms
8,320 KB
testcase_10 AC 284 ms
9,856 KB
testcase_11 AC 308 ms
9,856 KB
testcase_12 AC 136 ms
6,528 KB
testcase_13 AC 132 ms
6,528 KB
testcase_14 AC 197 ms
8,320 KB
testcase_15 AC 109 ms
5,888 KB
testcase_16 AC 71 ms
5,760 KB
testcase_17 AC 252 ms
8,704 KB
testcase_18 AC 188 ms
7,936 KB
testcase_19 AC 199 ms
9,856 KB
testcase_20 AC 153 ms
6,528 KB
testcase_21 AC 114 ms
7,040 KB
testcase_22 AC 128 ms
8,832 KB
testcase_23 AC 95 ms
6,016 KB
testcase_24 AC 136 ms
8,064 KB
testcase_25 AC 96 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int n;
    cin >> n;
    vector<ll> K(n), L(n), D(n);
    for (int i = 0; i < n; i++) {
        cin >> K[i] >> L[i] >> D[i];
    }

    ll ok = 1000000000000000000LL, ng = -1;
    while (ok - ng > 1) {
        ll mid = (ok + ng) / 2;
        ll cnt = 0;
        for (int i = 0; i < n; i++) {
            if (mid < L[i]) continue;
            (cnt += min((mid - L[i]) / (1LL << D[i]) + 1, K[i]) % 2) %= 2;
        }
        if (cnt == 0) ng = mid;
        else ok = mid;
    }
    cout << ok << endl;
    return 0;
}
0