結果
| 問題 | No.180 美しいWhitespace (2) |
| コンテスト | |
| ユーザー |
beet
|
| 提出日時 | 2018-11-14 10:56:31 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 5,000 ms |
| コード長 | 961 bytes |
| コンパイル時間 | 2,077 ms |
| コンパイル使用メモリ | 196,624 KB |
| 最終ジャッジ日時 | 2025-01-06 16:37:40 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 31 |
ソースコード
#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;
}
beet