結果

問題 No.814 ジジ抜き
ユーザー beetbeet
提出日時 2019-04-12 23:20:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 185 ms / 3,000 ms
コード長 907 bytes
コンパイル時間 2,079 ms
コンパイル使用メモリ 202,476 KB
実行使用メモリ 10,240 KB
最終ジャッジ日時 2024-09-15 06:19:01
合計ジャッジ時間 6,226 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 127 ms
10,240 KB
testcase_05 AC 128 ms
10,112 KB
testcase_06 AC 150 ms
10,112 KB
testcase_07 AC 77 ms
6,784 KB
testcase_08 AC 123 ms
9,856 KB
testcase_09 AC 114 ms
8,064 KB
testcase_10 AC 185 ms
9,744 KB
testcase_11 AC 153 ms
9,984 KB
testcase_12 AC 84 ms
6,656 KB
testcase_13 AC 83 ms
6,656 KB
testcase_14 AC 136 ms
8,448 KB
testcase_15 AC 63 ms
5,888 KB
testcase_16 AC 56 ms
5,888 KB
testcase_17 AC 119 ms
8,704 KB
testcase_18 AC 125 ms
7,808 KB
testcase_19 AC 151 ms
9,856 KB
testcase_20 AC 83 ms
6,528 KB
testcase_21 AC 83 ms
7,040 KB
testcase_22 AC 107 ms
8,832 KB
testcase_23 AC 66 ms
6,144 KB
testcase_24 AC 103 ms
8,192 KB
testcase_25 AC 82 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}


struct FastIO{
  FastIO(){
    cin.tie(0);
    ios::sync_with_stdio(0);
  }
}fastio_beet;

//INSERT ABOVE HERE
signed main(){  
  Int n;
  cin>>n;
  vector<Int> a(n),b(n),c(n);
  for(Int i=0;i<n;i++) cin>>a[i]>>b[i]>>c[i];

  auto calc=
    [&](Int x)->Int{
      Int res=0;
      for(Int i=0;i<n;i++){
        if(x<=b[i]){
          res+=a[i];
          continue;
        }
        Int d=(x-b[i]);
        Int e=(d+(1LL<<c[i])-1)>>c[i];
        if(a[i]>e) res+=a[i]-e;
      }
      //cout<<x<<" "<<res<<endl;
      res&=1;
      return res;
    };
  
  Int l=0,r=1.1e18;
  while(l+1<r){
    Int m=(l+r)>>1;
    if(calc(m)) l=m;
    else r=m;
  }  
  cout<<l<<endl;
  return 0;
}
0