結果

問題 No.814 ジジ抜き
ユーザー sinsincoscossinsincoscos
提出日時 2019-04-13 15:10:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 510 ms / 3,000 ms
コード長 536 bytes
コンパイル時間 688 ms
コンパイル使用メモリ 64,384 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2024-09-15 11:08:01
合計ジャッジ時間 9,786 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 6 ms
5,376 KB
testcase_04 AC 508 ms
10,368 KB
testcase_05 AC 510 ms
10,368 KB
testcase_06 AC 506 ms
10,240 KB
testcase_07 AC 195 ms
7,040 KB
testcase_08 AC 351 ms
10,112 KB
testcase_09 AC 366 ms
8,448 KB
testcase_10 AC 471 ms
10,112 KB
testcase_11 AC 495 ms
10,240 KB
testcase_12 AC 234 ms
6,912 KB
testcase_13 AC 231 ms
6,912 KB
testcase_14 AC 349 ms
8,576 KB
testcase_15 AC 184 ms
6,144 KB
testcase_16 AC 150 ms
6,016 KB
testcase_17 AC 403 ms
8,960 KB
testcase_18 AC 322 ms
8,192 KB
testcase_19 AC 393 ms
10,240 KB
testcase_20 AC 248 ms
6,912 KB
testcase_21 AC 230 ms
7,424 KB
testcase_22 AC 298 ms
9,088 KB
testcase_23 AC 178 ms
6,272 KB
testcase_24 AC 281 ms
8,320 KB
testcase_25 AC 219 ms
7,424 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:6:34: warning: built-in function 'pow' declared as non-function [-Wbuiltin-declaration-mismatch]
    6 | ll K[300010],L[300010],D[300010],pow[60] = {1};
      |                                  ^~~

ソースコード

diff #

#include <iostream>
using namespace std;
typedef long long ll;

int N;
ll K[300010],L[300010],D[300010],pow[60] = {1};

int main(){
    cin >> N;
    for(int i=1;i<=N;i++){
        cin >> K[i] >> L[i] >> D[i];
    }
    for(int i=1;i<60;i++) pow[i] = 2*pow[i-1];
    ll l = -1,r = 2e18;
    while(l+1<r){
        ll m = (l+r)/2;
        ll cnt = 0;
        for(int i=1;i<=N;i++){
            if(m>=L[i]) (cnt += min((m-L[i])/pow[D[i]]+1,K[i]))%=2;
        }
        if(cnt%2==1) r = m;
        else l = m;
    }
    cout << r << endl;
}
0