結果
問題 | No.2012 Largest Triangle |
ユーザー | 👑 potato167 |
提出日時 | 2022-07-15 22:25:27 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,116 bytes |
コンパイル時間 | 2,587 ms |
コンパイル使用メモリ | 222,172 KB |
実行使用メモリ | 12,928 KB |
最終ジャッジ日時 | 2024-06-27 18:58:35 |
合計ジャッジ時間 | 9,013 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 240 ms
12,672 KB |
testcase_17 | AC | 240 ms
12,544 KB |
testcase_18 | AC | 235 ms
12,544 KB |
testcase_19 | AC | 238 ms
12,508 KB |
testcase_20 | AC | 238 ms
12,544 KB |
testcase_21 | AC | 240 ms
12,672 KB |
testcase_22 | WA | - |
testcase_23 | AC | 238 ms
12,544 KB |
testcase_24 | AC | 243 ms
12,672 KB |
testcase_25 | WA | - |
testcase_26 | AC | 229 ms
12,800 KB |
testcase_27 | AC | 237 ms
12,916 KB |
testcase_28 | AC | 232 ms
12,928 KB |
testcase_29 | AC | 228 ms
12,928 KB |
testcase_30 | WA | - |
testcase_31 | AC | 230 ms
12,672 KB |
testcase_32 | AC | 233 ms
12,544 KB |
testcase_33 | AC | 230 ms
12,540 KB |
testcase_34 | AC | 231 ms
12,664 KB |
testcase_35 | AC | 238 ms
12,544 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | AC | 63 ms
5,888 KB |
ソースコード
#include <bits/stdc++.h> #pragma GCC optimize("Ofast") #define _GLIBCXX_DEBUG using namespace std; using std::cout; using std::cin; using std::endl; using ll=long long; using ld=long double; ll ILL=2167167167167167167; const int INF=2100000000; const ll mod=998244353; #define rep(i,a) for (ll i=0;i<a;i++) #define all(p) p.begin(),p.end() template<class T> using _pq = priority_queue<T, vector<T>, greater<T>>; template<class T> ll LB(vector<T> &v,T a){return lower_bound(v.begin(),v.end(),a)-v.begin();} template<class T> ll UB(vector<T> &v,T a){return upper_bound(v.begin(),v.end(),a)-v.begin();} template<class T> bool chmin(T &a,const T &b){if(a>b){a=b;return 1;}else return 0;} template<class T> bool chmax(T &a,const T &b){if(a<b){a=b;return 1;}else return 0;} template<class T> void So(vector<T> &v) {sort(v.begin(),v.end());} template<class T> void Sore(vector<T> &v) {sort(v.begin(),v.end(),[](T x,T y){return x>y;});} void yneos(bool a){if(a) cout<<"Yes\n"; else cout<<"No\n";} template<class T> void vec_out(vector<T> &p){for(int i=0;i<(int)(p.size());i++){if(i) cout<<" ";cout<<p[i];}cout<<"\n";} bool det(pair<ll,ll> a,pair<ll,ll> b,pair<ll,ll> c){ a.first-=b.first; a.second-=b.second; b.first-=c.first; b.second-=c.second; return (0<a.first*b.second-a.second*b.first); } bool _2d_comp(pair<ll,ll> &l,pair<ll,ll> &r){ if(l.first==0&&r.first==0) return l.second>r.second; if(l.first==0){ return l.second>0||r.first<0; } if(r.first==0){ return !(r.second>0||l.first<0); } if((l.first<0)^(r.first<0)) return l.first>0; return l.first*r.second<l.second*r.first; } void solve(); // oddloop int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int t=1; //cin>>t; rep(i,t) solve(); } void solve(){ int N; cin>>N; vector<pair<ll,ll>> p(N); rep(i,N) cin>>p[i].first>>p[i].second; vector<ll> X(N),Y(N); So(p); rep(i,N) tie(X[i],Y[i])=p[i]; auto f=[&](int a,int b)->ll{ return abs(p[a].first*p[b].second-p[a].second*p[b].first); }; if(N<=4000){ ll ans=0; rep(i,N) rep(j,i) chmax(ans,f(i,j)); return ; } vector<int> conv(N*2); int k=0; rep(i,N){ while(k>1&&det(p[conv[k-2]],p[conv[k-1]],p[i])){ k--; } conv[k]=i; k++; } int t=k; for(int i=N-2;i>=0;i--){ while(k>t&&det(p[conv[k-2]],p[conv[k-1]],p[conv[i]])){ k--; } conv[k]=i; k++; } conv.resize(k); int x=0; vector<int> order(N*2+k); rep(i,N*2+k) order[i]=i; auto sub_p=[](pair<ll,ll> a,pair<ll,ll> b)->pair<ll,ll>{ return {a.first-b.first,a.second-b.second}; }; sort(all(order),[&](int l,int r){ pair<ll,ll> L,R; if(l<N) L=p[l]; else if(l<N*2) L={X[l-N]*-1,Y[l-N]*-1}; else L=sub_p(p[conv[l-N*2]],p[conv[(l-N*2+k-1)%k]]); if(r<N) R=p[r]; else if(r<N*2) R={X[r-N]*-1,Y[r-N]*-1}; else R=sub_p(p[conv[r-N*2]],p[conv[(r-N*2+k-1)%k]]); return _2d_comp(L,R); }); ll ans=0; if(k<4000){ rep(i,k) rep(j,i){ chmax(ans,f(conv[j],conv[i])); } } if(k<200){ rep(i,k) rep(j,N){ chmax(ans,f(conv[i],j)); } } rep(i,N*4+k*2){ int v=order[i%(N*2+k)]; if(v<N*2){ v%=N; chmax(ans,f(v,x)); }else{ x=conv[v-N*2]; } } cout<<ans<<"\n"; }