結果
問題 | No.2612 Close the Distance |
ユーザー | 蜜蜂 |
提出日時 | 2023-06-15 19:38:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 652 ms / 3,000 ms |
コード長 | 2,356 bytes |
コンパイル時間 | 4,267 ms |
コンパイル使用メモリ | 233,604 KB |
実行使用メモリ | 22,860 KB |
最終ジャッジ日時 | 2024-09-28 05:13:16 |
合計ジャッジ時間 | 16,422 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 391 ms
17,060 KB |
testcase_07 | AC | 363 ms
16,808 KB |
testcase_08 | AC | 396 ms
16,956 KB |
testcase_09 | AC | 382 ms
16,552 KB |
testcase_10 | AC | 379 ms
17,060 KB |
testcase_11 | AC | 384 ms
17,068 KB |
testcase_12 | AC | 392 ms
17,444 KB |
testcase_13 | AC | 399 ms
17,572 KB |
testcase_14 | AC | 390 ms
16,420 KB |
testcase_15 | AC | 406 ms
16,932 KB |
testcase_16 | AC | 626 ms
20,072 KB |
testcase_17 | AC | 617 ms
18,468 KB |
testcase_18 | AC | 652 ms
21,420 KB |
testcase_19 | AC | 598 ms
18,332 KB |
testcase_20 | AC | 636 ms
21,920 KB |
testcase_21 | AC | 630 ms
17,408 KB |
testcase_22 | AC | 636 ms
22,860 KB |
testcase_23 | AC | 593 ms
19,156 KB |
testcase_24 | AC | 629 ms
20,992 KB |
testcase_25 | AC | 628 ms
18,192 KB |
testcase_26 | AC | 2 ms
6,944 KB |
コンパイルメッセージ
main.cpp: In function 'bool sub(std::vector<std::pair<long long int, long long int> >&, int)': main.cpp:36:12: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 36 | for(auto [w,v]:p){ | ^ main.cpp:45:12: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 45 | for(auto [w,v]:p){ | ^ main.cpp: In function 'int main()': main.cpp:86:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 86 | for(auto [w,v]:p){ | ^
ソースコード
//g++ 1.cpp -std=c++17 -O2 -I . #include <bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; using ll = long long; using ld = long double; using vi = vector<int>; using vvi = vector<vi>; using vll = vector<ll>; using vvll = vector<vll>; using vld = vector<ld>; using vvld = vector<vld>; using vst = vector<string>; using vvst = vector<vst>; #define fi first #define se second #define pb push_back #define eb emplace_back #define pq_big(T) priority_queue<T,vector<T>,less<T>> #define pq_small(T) priority_queue<T,vector<T>,greater<T>> #define all(a) a.begin(),a.end() #define rep(i,start,end) for(ll i=start;i<(ll)(end);i++) #define per(i,start,end) for(ll i=start;i>=(ll)(end);i--) #define uniq(a) sort(all(a));a.erase(unique(all(a)),a.end()) bool sub(vector<pair<ll,ll>> &p,int a){ int n=p.size(); ll min_w=1e18,max_w=-1e18; ll min_v=1e18,max_v=-1e18; for(auto [w,v]:p){ min_w=min(min_w,w); max_w=max(max_w,w); min_v=min(min_v,v); max_v=max(max_v,v); } bool flg=0,flg2=1,flg3=1,flg4,flg5; for(auto [w,v]:p){ flg4=0,flg5=0; if(abs(min_w-w)<=a&&abs(min_v-v)<=a)flg4=1; if(abs(max_w-w)<=a&&abs(max_v-v)<=a)flg4=1; if(abs(min_w-w)<=a&&abs(max_v-v)<=a)flg5=1; if(abs(max_w-w)<=a&&abs(min_v-v)<=a)flg5=1; flg2=min(flg2,flg4); flg3=min(flg3,flg5); } flg=max({flg,flg2,flg3}); return flg; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n;cin>>n; ll min_w=1e18,max_w=-1e18; ll min_v=1e18,max_v=-1e18; vector<pair<ll,ll>> p(n); rep(i,0,n){ ll x,y;cin>>x>>y; ll w=x+y,v=x-y; p[i]={w,v}; min_w=min(min_w,w); max_w=max(max_w,w); min_v=min(min_v,v); max_v=max(max_v,v); } ll ng=-1,ok=1e18; while(ok-ng>1){ ll check=(ok+ng)/2; int flg=0; vector<pair<ll,ll>> p1,p2,p3,p4; for(auto [w,v]:p){ if(abs(min_w-w)>check||abs(min_v-v)>check)p1.emplace_back(w,v); if(abs(min_w-w)>check||abs(max_v-v)>check)p2.emplace_back(w,v); if(abs(max_w-w)>check||abs(min_v-v)>check)p3.emplace_back(w,v); if(abs(max_w-w)>check||abs(max_v-v)>check)p4.emplace_back(w,v); } flg=max({flg,(int)sub(p1,check),(int)sub(p2,check),(int)sub(p3,check),(int)sub(p4,check)}); if(flg){ ok=check; } else{ ng=check; } } cout<<ok<<endl; }