結果
問題 | No.1625 三角形の質問 |
ユーザー | kmjp |
提出日時 | 2021-07-23 22:36:44 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2,869 ms / 6,000 ms |
コード長 | 3,026 bytes |
コンパイル時間 | 2,853 ms |
コンパイル使用メモリ | 228,472 KB |
実行使用メモリ | 42,216 KB |
最終ジャッジ日時 | 2024-07-18 18:36:22 |
合計ジャッジ時間 | 44,929 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 182 ms
37,220 KB |
testcase_01 | AC | 387 ms
37,880 KB |
testcase_02 | AC | 1,272 ms
40,100 KB |
testcase_03 | AC | 1,555 ms
39,372 KB |
testcase_04 | AC | 1,107 ms
39,668 KB |
testcase_05 | AC | 2,109 ms
40,284 KB |
testcase_06 | AC | 2,841 ms
42,084 KB |
testcase_07 | AC | 2,838 ms
42,060 KB |
testcase_08 | AC | 2,795 ms
42,084 KB |
testcase_09 | AC | 2,800 ms
42,080 KB |
testcase_10 | AC | 2,869 ms
42,084 KB |
testcase_11 | AC | 2,785 ms
42,216 KB |
testcase_12 | AC | 2,869 ms
42,084 KB |
testcase_13 | AC | 2,828 ms
42,088 KB |
testcase_14 | AC | 2,856 ms
42,084 KB |
testcase_15 | AC | 2,850 ms
42,080 KB |
testcase_16 | AC | 849 ms
41,232 KB |
testcase_17 | AC | 1,024 ms
41,100 KB |
testcase_18 | AC | 1,477 ms
41,304 KB |
testcase_19 | AC | 1,363 ms
41,176 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,Q; int L[202020],R[202020]; ll A[202020]; int T[202020]; ll ret[202020]; template<class V,int NV> class SegTree_1 { public: vector<V> val; static V const def=-1; V comp(V l,V r){ return max(l,r);}; void init(){val=vector<V>(NV*2,def);}; V getval(int x,int y,int l=0,int r=NV,int k=1) { // x<=i<y if(r<=x || y<=l) return def; if(x<=l && r<=y) return val[k]; return comp(getval(x,y,l,(l+r)/2,k*2),getval(x,y,(l+r)/2,r,k*2+1)); } void update(int entry, V v) { entry += NV; val[entry]=comp(v,val[entry]); //上書きかチェック while(entry>1) entry>>=1, val[entry]=comp(val[entry*2],val[entry*2+1]); } }; SegTree_1<ll,1<<20> st; void solve() { int i,j,k,l,r,x,y; string s; vector<int> Xs; cin>>N>>Q; FOR(i,N) { ll X[3],Y[3]; cin>>X[0]>>Y[0]>>X[1]>>Y[1]>>X[2]>>Y[2]; L[i]=min({X[0],X[1],X[2]}); R[i]=max({X[0],X[1],X[2]}); X[1]-=X[0]; X[2]-=X[0]; Y[1]-=Y[0]; Y[2]-=Y[0]; A[i]=abs(X[1]*Y[2]-X[2]*Y[1]); Xs.push_back(L[i]); Xs.push_back(R[i]); } FOR(i,100000) { if(i<Q) { cin>>T[i+N]; if(T[i+N]==1) { ll X[3],Y[3]; cin>>X[0]>>Y[0]>>X[1]>>Y[1]>>X[2]>>Y[2]; L[i+N]=min({X[0],X[1],X[2]}); R[i+N]=max({X[0],X[1],X[2]}); X[1]-=X[0]; X[2]-=X[0]; Y[1]-=Y[0]; Y[2]-=Y[0]; A[i+N]=abs(X[1]*Y[2]-X[2]*Y[1]); } else { cin>>L[i+N]>>R[i+N]; ret[i+N]=-1; } } else { T[i+N]=0; } Xs.push_back(L[i+N]); Xs.push_back(R[i+N]); } Xs.push_back(0); Xs.push_back(1<<30); sort(ALL(Xs)); Xs.erase(unique(ALL(Xs)),Xs.end()); FOR(i,N+Q) { L[i]=lower_bound(ALL(Xs),L[i])-Xs.begin(); R[i]=lower_bound(ALL(Xs),R[i])-Xs.begin(); } int pre; const int DI=1000; for(i=0;i<100000;i+=DI) { vector<pair<int,int>> ev; st.init(); FOR(j,N+i) { if(j<N||T[j]==1) { ev.push_back({R[j],j}); } } for(j=N+i;j<N+i+DI;j++) { if(T[j]==2) { ev.push_back({R[j],j}); for(x=N+i;x<j;x++) if(T[x]==1 && L[j]<=L[x]&&R[x]<=R[j]) ret[j]=max(ret[j],A[x]); } } sort(ALL(ev)); FORR2(r,i,ev) { if(i<N||T[i]==1) { st.update(L[i],A[i]); } else { ret[i]=max(ret[i],st.getval(L[i],R[i])); } } for(j=N+i;j<N+i+DI;j++) { if(T[j]==2) cout<<ret[j]<<endl; } continue; } } 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; }