結果

問題 No.814 ジジ抜き
ユーザー tktk_snsntktk_snsn
提出日時 2021-04-28 22:19:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 429 ms / 3,000 ms
コード長 906 bytes
コンパイル時間 658 ms
コンパイル使用メモリ 90,796 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-07-07 21:19:21
合計ジャッジ時間 8,368 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 427 ms
10,444 KB
testcase_05 AC 429 ms
10,496 KB
testcase_06 AC 428 ms
10,368 KB
testcase_07 AC 163 ms
6,912 KB
testcase_08 AC 296 ms
10,240 KB
testcase_09 AC 305 ms
8,448 KB
testcase_10 AC 395 ms
10,112 KB
testcase_11 AC 417 ms
10,368 KB
testcase_12 AC 196 ms
6,912 KB
testcase_13 AC 197 ms
7,040 KB
testcase_14 AC 291 ms
8,704 KB
testcase_15 AC 155 ms
6,144 KB
testcase_16 AC 125 ms
6,144 KB
testcase_17 AC 338 ms
9,088 KB
testcase_18 AC 267 ms
8,192 KB
testcase_19 AC 329 ms
10,112 KB
testcase_20 AC 213 ms
6,912 KB
testcase_21 AC 191 ms
7,424 KB
testcase_22 AC 255 ms
9,088 KB
testcase_23 AC 148 ms
6,400 KB
testcase_24 AC 235 ms
8,576 KB
testcase_25 AC 180 ms
7,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <vector>
#include <iostream>
#include <algorithm>
#include <cmath>
#include <map>
#include <set>
#include <unordered_map>
using namespace std;
template<class T> inline bool chmax(T& a, T b){ if (a < b){ a = b; return true; } return false; }
template<class T> inline bool chmin(T& a, T b){ if (a > b){ a = b; return true; } return false; }

using ll = long long;
ll K[303030], L[303030], D[303030];
ll two[100];
int n;

bool F(ll x) {
    ll cnt = 0;
    for (int i=0; i<n; ++i) {
        if (x < L[i]) continue;
        cnt += min(K[i], 1 + (x-L[i])/two[D[i]]);
    }
    return cnt%2;
}

int main() {
    two[0] = 1;
    for (int i=1; i<60; ++i) two[i] = two[i-1]*2;

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

    ll l=-1, r=1e18;
    while (r-l>1) {
        ll m = (r+l)/2;
        if (F(m)) r = m;
        else l = m;
    }
    cout << r << endl;
}
0