結果

問題 No.814 ジジ抜き
ユーザー vwxyz
提出日時 2025-01-27 04:22:20
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 335 ms / 3,000 ms
コード長 1,143 bytes
コンパイル時間 963 ms
コンパイル使用メモリ 112,744 KB
実行使用メモリ 17,376 KB
最終ジャッジ日時 2025-01-27 04:22:28
合計ジャッジ時間 7,780 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <functional> // std::functionを使うために必要

#define int long long

using namespace std;

int Bisect_Int(long long ok, long long ng, const function<bool(long long)>& is_ok) {
    while (abs(ok - ng) > 1) {
        long long mid = (ok + ng) / 2;
        if (is_ok(mid)) {
            ok = mid;
        } else {
            ng = mid;
        }
    }
    return ok;
}

signed main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    
    int N;
    cin >> N;
    vector<long long> K(N), L(N), D(N);
    for (int i = 0; i < N; ++i) {
        cin >> K[i] >> L[i] >> D[i];
    }
    
    auto is_ok = [&](long long ans) -> bool {
        vector<int> where;
        for (int i = 0; i < N; ++i) {
            if (ans >= L[i]) {
                where.push_back(i);
            }
        }
        int sum = 0;
        for (int idx : where) {
            sum += min(K[idx], ((ans - L[idx]) >> D[idx]) + 1) % 2;
        }
        return sum % 2;
    };
    
    long long ans = Bisect_Int(1LL << 60, -1LL, is_ok);
    cout << ans << endl;
    
    return 0;
}
0