結果
問題 | No.2612 Close the Distance |
ユーザー | kmjp |
提出日時 | 2024-01-21 00:08:33 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,039 ms / 3,000 ms |
コード長 | 1,935 bytes |
コンパイル時間 | 2,512 ms |
コンパイル使用メモリ | 208,688 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-28 05:47:14 |
合計ジャッジ時間 | 17,885 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 573 ms
6,940 KB |
testcase_07 | AC | 494 ms
6,940 KB |
testcase_08 | AC | 438 ms
6,940 KB |
testcase_09 | AC | 555 ms
6,940 KB |
testcase_10 | AC | 494 ms
6,940 KB |
testcase_11 | AC | 567 ms
6,940 KB |
testcase_12 | AC | 524 ms
6,940 KB |
testcase_13 | AC | 578 ms
6,940 KB |
testcase_14 | AC | 551 ms
6,944 KB |
testcase_15 | AC | 557 ms
6,940 KB |
testcase_16 | AC | 864 ms
6,940 KB |
testcase_17 | AC | 1,018 ms
6,940 KB |
testcase_18 | AC | 983 ms
6,944 KB |
testcase_19 | AC | 1,039 ms
6,940 KB |
testcase_20 | AC | 711 ms
6,940 KB |
testcase_21 | AC | 940 ms
6,940 KB |
testcase_22 | AC | 631 ms
6,940 KB |
testcase_23 | AC | 716 ms
6,940 KB |
testcase_24 | AC | 777 ms
6,940 KB |
testcase_25 | AC | 1,029 ms
6,948 KB |
testcase_26 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define FORR2(x,y,arr) for(auto& [x,y]:arr) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;} template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;} //------------------------------------------------------- int N; ll X[202020],Y[202020]; int ok(ll v, vector<pair<ll,ll>> V) { ll Xma=-1LL<<60; ll Xmi=1LL<<60; ll Yma=-1LL<<60; ll Ymi=1LL<<60; int i; FOR(i,N) { int n=0; FORR2(a,b,V) if(a<=X[i]&&X[i]<=a+v&&b<=Y[i]&&Y[i]<=b+v) n=1; if(n==0) { Xmi=min(Xmi,X[i]); Xma=max(Xma,X[i]-v); Ymi=min(Ymi,Y[i]); Yma=max(Yma,Y[i]-v); } } if(Xmi==1LL<<60) return 1; if(V.size()==3) return 0; if(V.size()==0) { V.push_back({Xmi,Ymi}); if(ok(v,V)) return 1; V.pop_back(); V.push_back({Xmi,Yma}); if(ok(v,V)) return 1; V.pop_back(); V.push_back({Xma,Ymi}); if(ok(v,V)) return 1; V.pop_back(); V.push_back({Xma,Yma}); if(ok(v,V)) return 1; V.pop_back(); } else { V.push_back({Xmi,Ymi}); V.push_back({Xma,Yma}); if(ok(v,V)) return 1; V.pop_back(); V.pop_back(); V.push_back({Xma,Ymi}); V.push_back({Xmi,Yma}); if(ok(v,V)) return 1; V.pop_back(); V.pop_back(); } return 0; } void solve() { int i,j,k,l,r,x,y; string s; cin>>N; FOR(i,N) { cin>>x>>y; X[i]=x+y; Y[i]=x-y; } ll ret=(1LL<<31)-1; for(i=30;i>=0;i--) if(ok(ret-(1LL<<i),{})) ret-=1LL<<i; cout<<ret<<endl; } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); cout.tie(0); solve(); return 0; }