結果

問題 No.2292 Interval Union Find
ユーザー 沙耶花沙耶花
提出日時 2023-05-05 21:45:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,789 bytes
コンパイル時間 4,607 ms
コンパイル使用メモリ 274,124 KB
実行使用メモリ 35,712 KB
最終ジャッジ日時 2024-05-02 15:45:33
合計ジャッジ時間 30,233 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
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 WA -
testcase_17 WA -
testcase_18 AC 350 ms
34,044 KB
testcase_19 AC 489 ms
35,712 KB
testcase_20 AC 491 ms
35,704 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 225 ms
9,852 KB
testcase_42 AC 228 ms
10,112 KB
testcase_43 AC 245 ms
9,852 KB
testcase_44 AC 317 ms
9,980 KB
testcase_45 AC 317 ms
9,976 KB
testcase_46 AC 334 ms
9,984 KB
testcase_47 AC 369 ms
9,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001
using P = pair<int,int>;

P op(P a,P b){
	a.first += b.first;
	a.second += b.second;
	return a;
}

P e(){
	return make_pair(0,0);
}

P mapping(int a,P b){
	if(a==-1)return b;
	b.first = a * b.second;
	return b;
}

int composition(int a,int b){
	if(a==-1)return b;
	return a;
}

int id(){
	return -1;
}

bool check(P a){
	return a.first==a.second;
}

int main(){
	
	int n,q;
	cin>>n>>q;
	vector<int> t(q),a(q),b(q);
	vector<int> v;
	rep(i,q){
		cin>>t[i];
		if(t[i]!=4){
			cin>>a[i]>>b[i];
			v.push_back(a[i]);
			v.push_back(a[i]+1);
			v.push_back(b[i]);
			v.push_back(b[i]+1);
		}
		else{
			cin>>a[i];
			v.push_back(a[i]);
			v.push_back(a[i]+1);
		}
	}
	sort(v.begin(),v.end());
	v.erase(unique(v.begin(),v.end()),v.end());
	
	lazy_segtree<P,op,e,int,mapping,composition,id> seg(v.size()-1);
	rep(i,v.size()-1)seg.set(i,make_pair(0,v[i+1] - v[i]));
	
	rep(i,q){
		if(t[i]<=2){
			int l = distance(v.begin(),lower_bound(v.begin(),v.end(),a[i]));
			int r = distance(v.begin(),lower_bound(v.begin(),v.end(),b[i]));
			if(t[i]==1)seg.apply(l,r,1);
			else seg.apply(l,r,0);
		}
		if(t[i]==3){
			if(a[i]>b[i])swap(a[i],b[i]);
			int l = distance(v.begin(),lower_bound(v.begin(),v.end(),a[i]));
			int r = distance(v.begin(),lower_bound(v.begin(),v.end(),b[i]));
			if(seg.prod(l,r).first==r-l)cout<<1<<endl;
			else cout<<0<<endl;
		}
		if(t[i]==4){
			int l = distance(v.begin(),lower_bound(v.begin(),v.end(),a[i]));
			int r = seg.max_right<check>(l);
			l = seg.min_left<check>(r);
			cout<<v[r]-v[l]+1<<endl;
		}
	}
	
	return 0;
}
0