結果

問題 No.180 美しいWhitespace (2)
ユーザー beetbeet
提出日時 2018-11-14 10:56:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 961 bytes
コンパイル時間 2,186 ms
コンパイル使用メモリ 201,360 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-26 01:01:20
合計ジャッジ時間 4,059 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,384 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,384 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 3 ms
4,380 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 3 ms
4,376 KB
testcase_13 AC 3 ms
4,380 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 2 ms
4,380 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 2 ms
4,384 KB
testcase_18 AC 3 ms
4,380 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 1 ms
4,380 KB
testcase_21 AC 1 ms
4,380 KB
testcase_22 AC 2 ms
4,380 KB
testcase_23 AC 2 ms
4,384 KB
testcase_24 AC 2 ms
4,380 KB
testcase_25 AC 2 ms
4,380 KB
testcase_26 AC 2 ms
4,376 KB
testcase_27 AC 2 ms
4,380 KB
testcase_28 AC 2 ms
4,380 KB
testcase_29 AC 1 ms
4,376 KB
testcase_30 AC 2 ms
4,380 KB
testcase_31 AC 3 ms
4,380 KB
testcase_32 AC 2 ms
4,380 KB
testcase_33 AC 2 ms
4,380 KB
testcase_34 AC 3 ms
4,376 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;}

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

  const Int INF = 1e18;
  using P = pair<Int, Int>;
  P ans(INF,-1);
  auto calc=
    [&](Int x){
      Int c1,c2,d1,d2;
      c1=c2=INF;
      d1=d2=-INF;
      for(Int i=0;i<n;i++){
        chmin(c1,a[i]+b[i]*x);
        chmax(d1,a[i]+b[i]*x);
        chmin(c2,a[i]+b[i]*(x+1));
        chmax(d2,a[i]+b[i]*(x+1));        
      }
      chmin(ans,P(d1-c1,x));
      chmin(ans,P(d2-c2,x+1));
      return (d2-d1)-(c2-c1);
    };
  
  Int l=0,r=2e9;
  while(l+1<r){
    Int m=(l+r)>>1;
    if(calc(m)<0) l=m;
    else r=m;
  }
  
  for(Int i=l-10;i<r+10;i++) if(1<=i) calc(i);
  cout<<ans.second<<endl;
  return 0;
}
0