結果

問題 No.814 ジジ抜き
ユーザー TiramisterTiramister
提出日時 2019-04-12 23:43:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 514 ms / 3,000 ms
コード長 628 bytes
コンパイル時間 545 ms
コンパイル使用メモリ 69,724 KB
実行使用メモリ 10,216 KB
最終ジャッジ日時 2024-09-15 06:22:36
合計ジャッジ時間 9,364 ms
ジャッジサーバーID
(参考情報)
judge5 / 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 6 ms
5,376 KB
testcase_04 AC 514 ms
10,204 KB
testcase_05 AC 510 ms
10,216 KB
testcase_06 AC 501 ms
10,128 KB
testcase_07 AC 196 ms
6,656 KB
testcase_08 AC 346 ms
9,984 KB
testcase_09 AC 362 ms
8,192 KB
testcase_10 AC 467 ms
9,856 KB
testcase_11 AC 491 ms
9,984 KB
testcase_12 AC 238 ms
6,656 KB
testcase_13 AC 228 ms
6,656 KB
testcase_14 AC 352 ms
8,432 KB
testcase_15 AC 186 ms
5,888 KB
testcase_16 AC 152 ms
5,888 KB
testcase_17 AC 402 ms
8,704 KB
testcase_18 AC 323 ms
7,888 KB
testcase_19 AC 385 ms
9,944 KB
testcase_20 AC 249 ms
6,656 KB
testcase_21 AC 229 ms
7,168 KB
testcase_22 AC 292 ms
8,832 KB
testcase_23 AC 178 ms
6,144 KB
testcase_24 AC 254 ms
8,192 KB
testcase_25 AC 216 ms
7,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using lint = long long;

struct Card {
    lint K, L;
    int D;
};

int main() {
    int N;
    std::cin >> N;

    std::vector<Card> cards(N);
    for (auto& c : cards) {
        std::cin >> c.K >> c.L >> c.D;
    }

    lint ok = 1LL << 60, ng = -1;
    while (ok - ng > 1) {
        lint mid = (ok + ng) / 2;
        lint num = 0;
        for (auto card : cards) {
            if (mid < card.L) continue;
            num += std::min((mid - card.L) / (1LL << card.D) + 1, card.K);
        }

        ((num & 1) ? ok : ng) = mid;
    }

    std::cout << ok << std::endl;
    return 0;
}
0