結果

問題 No.814 ジジ抜き
ユーザー shibh308shibh308
提出日時 2019-04-12 22:36:51
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 298 ms / 3,000 ms
コード長 4,653 bytes
コンパイル時間 2,539 ms
コンパイル使用メモリ 202,676 KB
実行使用メモリ 10,080 KB
最終ジャッジ日時 2023-10-12 22:13:26
合計ジャッジ時間 8,173 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,368 KB
testcase_01 AC 1 ms
4,368 KB
testcase_02 AC 2 ms
4,372 KB
testcase_03 AC 4 ms
4,368 KB
testcase_04 AC 296 ms
10,020 KB
testcase_05 AC 298 ms
10,068 KB
testcase_06 AC 297 ms
10,080 KB
testcase_07 AC 95 ms
6,424 KB
testcase_08 AC 152 ms
9,788 KB
testcase_09 AC 216 ms
8,028 KB
testcase_10 AC 279 ms
9,564 KB
testcase_11 AC 292 ms
9,784 KB
testcase_12 AC 133 ms
6,456 KB
testcase_13 AC 131 ms
6,400 KB
testcase_14 AC 197 ms
8,300 KB
testcase_15 AC 106 ms
5,632 KB
testcase_16 AC 73 ms
5,656 KB
testcase_17 AC 238 ms
8,572 KB
testcase_18 AC 186 ms
7,780 KB
testcase_19 AC 203 ms
9,816 KB
testcase_20 AC 145 ms
6,472 KB
testcase_21 AC 116 ms
7,160 KB
testcase_22 AC 135 ms
8,932 KB
testcase_23 AC 95 ms
5,924 KB
testcase_24 AC 140 ms
8,012 KB
testcase_25 AC 100 ms
6,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#pragma GCC optimize("O3")
#pragma GCC target("tune=native")
#pragma GCC target("avx")
// #pragma GCC target("avx2")
#pragma GCC optimize("unroll-loops")

using namespace std;

using i64 = int64_t;

const i64 MOD = 1e9+7;

const i64 INF = 1e18+7;

// pythonのrangeのような範囲for文用のclass for(const auto& i : Range<>(10)) のように書く
template <typename T = i64>
struct Range{
    struct iterator{
        T value;
        const T step, last;
        const T& operator*(){return value;}
        iterator(T value, T step, T last) :
            value(step < static_cast<T>(0) ? max(last, value) : min(last, value)),
            step(step),
            last(last)
        {
        }
        iterator operator++(){value = step < static_cast<T>(0) ? max(value + step, last) : min(value + step, last); return *this;}
        bool operator!=(const iterator& x){return value != x.value;}
    };
    const T start, last, step;

    Range(const T start, const T last, const T step = static_cast<T>(1)) :
        start(start),
        last(last),
        step(step)
    {
    }

    Range(const T last) :
        start(0),
        last(last),
        step(1)
    {
    }

    iterator begin(){return iterator(start, step, last);}
    iterator end(){return iterator(last, step, last);}
};

// lambda式を用いた再帰
template <typename F>
struct FixPoint{
    const F _f;
    FixPoint(F&& f) : _f(forward<F>(f)){}

    template<typename... Types>
    decltype(auto) operator()(Types&&... args) const{
        return _f(*this, forward<Types>(args)...);
    }
};

template <typename F>
static decltype(auto) makeRec(F&& f){
    return FixPoint<F>(forward<F>(f));
}

// 多次元vectorの一斉初期化 makeVector<i64, 0>(a, b, ...)のように書く
template <typename T, T Value = T()>
vector<T> makeVector(size_t x){
    return vector<T>(x, T(Value));
}

template <typename T, T Value = T(), typename... Types>
auto makeVector(size_t x, Types... args){
    return vector<decltype(makeVector<T, Value>(args...))>(x, makeVector<T, Value>(args...));
}

// 最大値を更新し、更新できた時にはtrueを返す
template <typename T = i64>
bool chmax(T& a, T b){
    if(a < b){
        a = b;
        return true;
    }
    return false;
}

// 同様に最小値を更新する
template <typename T = i64>
bool chmin(T& a, T b){
    if(a > b){
        a = b;
        return true;
    }
    return false;
}

// 行数と変数名、値をclogに表示するデバッグ用print
#define dump(x) fprintf(stderr, "line =%4d, name =%7s , ", __LINE__, #x); clog << "value = " << x << endl;

// 同様の配列向けデバッグ用print
#define vecdump(x) fprintf(stderr, "line =%4d, name =%7s\n", __LINE__, #x); _dump_macro(x);

void _dump(int, string& x){
    clog << x << endl;
}

template <typename T>
void _dump(bool, T& x){
    clog << x << " ";
}

template <typename T, typename U = typename T::iterator>
void _dump(int, T& x){

    for(auto& elm : x)
        _dump(0, elm);

    clog << endl;
}

template <typename T>
void _dump_macro(T& x){
    _dump(0, x);
}

// input用の関数群
void _input(int, string& x){
    cin >> x;
}

template <typename T>
void _input(bool, T& x){
    cin >> x;
}

template <typename T, typename U = typename T::iterator>
void _input(int, T& x){

    for(auto& elm : x)
        _input(0, elm);
}

template <typename T>
void input_single(T& x){
    _input(0, x);
}

auto input(){}

template <typename T, typename... Types>
void input(T& value, Types&&... args){
    input_single(value);
    input(forward<Types>(args)...);
};

void _pararell_input(size_t){}

template <typename T, typename... Types>
void _pararell_input(size_t index, T& value, Types&&... args){
    input(value[index]);
    _pararell_input(index, forward<Types>(args)...);
}

template <typename... Types>
void pararell_input(size_t count, Types&&... args){
    for(const auto& i : Range<>(count))
        _pararell_input(i, forward<Types>(args)...);
}


signed main(){

    cin.tie(0);
    ios::sync_with_stdio(false);
    cout << fixed << setprecision(20);

    int n;
    input(n);
    vector<i64> a(n), b(n), c(n);
    pararell_input(n, a, b, c);
    i64 st = -1, en = 2 * INF;

    // [0, k]
    auto f = [&](i64 k){
        i64 sum = 0;
        for(const auto& i : Range<>(n)){
            i64 dif = k - b[i];
            if(dif < 0)
                continue;
            i64 cnt = min(a[i], dif / (1L << c[i]) + 1);
            sum += cnt;
        }
        return sum % 2;
    };

    while(en - st > 1){
        auto mid = (st + en) >> 1;
        (f(mid) ? en : st) = mid;
    }
    cout << en << endl;
}
0