結果

問題 No.1625 三角形の質問
ユーザー 👑 kmjpkmjp
提出日時 2021-07-23 22:36:44
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 3,211 ms / 6,000 ms
コード長 3,026 bytes
コンパイル時間 3,986 ms
コンパイル使用メモリ 223,332 KB
実行使用メモリ 42,188 KB
最終ジャッジ日時 2023-09-25 22:56:40
合計ジャッジ時間 50,535 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 170 ms
39,252 KB
testcase_01 AC 412 ms
39,432 KB
testcase_02 AC 1,422 ms
41,048 KB
testcase_03 AC 1,710 ms
40,172 KB
testcase_04 AC 1,248 ms
40,704 KB
testcase_05 AC 2,358 ms
40,728 KB
testcase_06 AC 3,184 ms
41,824 KB
testcase_07 AC 3,133 ms
41,824 KB
testcase_08 AC 3,012 ms
41,848 KB
testcase_09 AC 3,049 ms
41,888 KB
testcase_10 AC 3,182 ms
41,888 KB
testcase_11 AC 3,207 ms
41,788 KB
testcase_12 AC 3,159 ms
41,888 KB
testcase_13 AC 3,152 ms
41,884 KB
testcase_14 AC 3,211 ms
41,952 KB
testcase_15 AC 3,185 ms
41,892 KB
testcase_16 AC 873 ms
42,188 KB
testcase_17 AC 1,043 ms
41,528 KB
testcase_18 AC 1,669 ms
41,820 KB
testcase_19 AC 1,328 ms
40,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0