結果

問題 No.2295 Union Path Query (Medium)
ユーザー cyk203cyk203
提出日時 2023-05-05 23:14:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 195 ms / 4,000 ms
コード長 3,449 bytes
コンパイル時間 2,118 ms
コンパイル使用メモリ 166,700 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2023-08-15 06:21:24
合計ジャッジ時間 12,767 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
9,632 KB
testcase_01 AC 3 ms
9,724 KB
testcase_02 AC 3 ms
9,624 KB
testcase_03 AC 135 ms
12,188 KB
testcase_04 AC 122 ms
12,328 KB
testcase_05 AC 92 ms
12,748 KB
testcase_06 AC 66 ms
12,652 KB
testcase_07 AC 195 ms
12,124 KB
testcase_08 AC 62 ms
13,296 KB
testcase_09 AC 64 ms
13,284 KB
testcase_10 AC 68 ms
13,340 KB
testcase_11 AC 84 ms
13,348 KB
testcase_12 AC 94 ms
12,508 KB
testcase_13 AC 120 ms
11,804 KB
testcase_14 AC 99 ms
11,884 KB
testcase_15 AC 39 ms
13,384 KB
testcase_16 AC 35 ms
13,324 KB
testcase_17 AC 54 ms
13,404 KB
testcase_18 AC 127 ms
13,440 KB
testcase_19 AC 140 ms
13,392 KB
testcase_20 AC 76 ms
13,336 KB
testcase_21 AC 77 ms
13,404 KB
testcase_22 AC 137 ms
13,404 KB
testcase_23 AC 64 ms
11,772 KB
testcase_24 AC 69 ms
11,744 KB
testcase_25 AC 35 ms
11,828 KB
testcase_26 AC 69 ms
11,744 KB
testcase_27 AC 68 ms
11,800 KB
testcase_28 AC 71 ms
11,736 KB
testcase_29 AC 68 ms
11,840 KB
testcase_30 AC 69 ms
11,756 KB
testcase_31 AC 68 ms
11,828 KB
testcase_32 AC 68 ms
11,760 KB
testcase_33 AC 72 ms
11,880 KB
testcase_34 AC 69 ms
11,760 KB
testcase_35 AC 69 ms
11,836 KB
testcase_36 AC 69 ms
11,832 KB
testcase_37 AC 74 ms
11,844 KB
testcase_38 AC 70 ms
12,044 KB
testcase_39 AC 74 ms
11,828 KB
testcase_40 AC 72 ms
11,832 KB
testcase_41 AC 77 ms
11,780 KB
testcase_42 AC 77 ms
11,800 KB
testcase_43 AC 71 ms
11,920 KB
testcase_44 AC 71 ms
11,984 KB
testcase_45 AC 70 ms
11,832 KB
testcase_46 AC 93 ms
12,164 KB
testcase_47 AC 95 ms
12,644 KB
testcase_48 AC 124 ms
13,324 KB
testcase_49 AC 120 ms
13,400 KB
testcase_50 AC 57 ms
11,868 KB
testcase_51 AC 70 ms
12,112 KB
testcase_52 AC 62 ms
11,840 KB
testcase_53 AC 68 ms
11,836 KB
testcase_54 AC 81 ms
12,692 KB
testcase_55 AC 81 ms
12,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* 
 * Author: $%U%$
 * Time: $%Y%$-$%M%$-$%D%$ $%h%$:$%m%$:$%s%$
 */
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(i,a,b) for(ll i=(a);i<=(b);i++)
#define per(i,a,b) for(ll i=(a);i>=(b);i--)
#define re(i,a,b) for(ll i=(a);i<(b);i++)
#define pe(i,a,b) for(ll i=(a);i>(b);i--)
#define getchar()(p1==p2&&(p2=(p1=buf)+fread(buf,1,1<<21,stdin),p1==p2)?EOF:*p1++)
char buf[1<<21],*p1=buf,*p2=buf;
template <typename T>
inline void read(T& r) {
	r=0;bool w=0; char ch=getchar();
	while(ch<'0'||ch>'9') w=ch=='-'?1:0,ch=getchar();
	while(ch>='0'&&ch<='9') r=r*10+(ch^48), ch=getchar();
	r=w?-r:r;
}
template <typename T>
inline void readupp(T& r){
	r=0;
	char ch=getchar();
	while(ch>'Z'||ch<'A')ch=getchar();
	r=ch;
}
template <typename T>
inline void readlow(T& r){
	r=0;
	char ch=getchar();
	while(ch>'z'||ch<'a')ch=getchar();
	r=ch;
}
template <typename T>
inline void readdig(T& r){
	r=0;
	char ch=getchar();
	while(ch>'9'||ch<'0')ch=getchar();
	r=ch-'0';
}
template <typename T>
inline void readvisi(T& r){
	r=0;
	char ch=getchar();
	while(ch>126||ch<33)ch=getchar();
	r=ch;
}
template <typename T>
inline ll readlowstr(T& r){
	ll n=0;
	char ch=getchar();
	while(ch>'z'||ch<'a')ch=getchar();
	while(ch<='z'&&ch>='a')r[++n]=ch-'a',ch=getchar();
	return n;
}
template <typename T>
inline ll readuppstr(T& r){
	ll n=0;
	char ch=getchar();
	while(ch>'Z'||ch<'A')ch=getchar();
	while(ch<='Z'&&ch>='A')r[++n]=ch-'A',ch=getchar();
	return n;
}
template <typename T>
inline ll readdigstr(T& r){
	ll n=0;
	char ch=getchar();
	while(ch>'9'||ch<'0')ch=getchar();
	while(ch<='9'&&ch>='0')r[++n]=ch-'0',ch=getchar();
	return n;
}
template <typename T>
inline ll readvisistr(T& r){
	ll n=0;
	char ch=getchar();
	while(ch>126||ch<33)ch=getchar();
	while(ch<=126&&ch>=33)r[++n]=ch,ch=getchar();
	return n;
}
const ll MOD=998244353;
ll gcd(ll A,ll B){return B?gcd(B,A%B):A;}
template<typename T>
void chkmax(T&A,T B){if(A<B)A=B;}
template<typename T>
void chkmin(T&A,T B){if(A>B)A=B;}
template<typename T>
T Madd(T A,T B){return A+B>=MOD?A+B-MOD:A+B;}
template<typename T>
T Msub(T A,T B){return A-B<0?A-B+MOD:A-B;}
template<typename T>
void MODed(T &A){A%=MOD;A+=(A<0?MOD:0);}
ll pw(ll A,ll B){
	ll res=1;
	while(B){
		if(B&1)res=res*A%MOD;
		A=A*A%MOD;
		B>>=1;
	}
	return res;
}
void _FILE(string s){
	freopen((s+".in").c_str(),"r",stdin);
	freopen((s+".out").c_str(),"w",stdout);
}
const ll N=200003,M=3003,INF=2000000000000000007ll;
ll n,X,q,id[N],dis[N],rk[N],sz[N],Sz[N];
ll find(ll x){return x==id[x]?x:find(id[x]);}
int main(){
	read(n),read(X),read(q);
	re(i,0,n)id[i]=i,dis[i]=0,rk[i]=0,sz[i]=1;
	rep(i,1,q){
		ll in1,in2,in3;
		read(in1);
		if(in1==1){
			read(in2),read(in3);
			ll P=find(X),Q=find(in2);
			if(P==Q)continue;
			if(rk[P]>rk[Q])swap(P,Q);
			id[P]=Q;
			dis[P]=in3;
			rk[Q]=max(rk[Q],rk[P]+1);
			Sz[Q]=(Sz[P]+Sz[Q]+sz[P]*sz[Q]%MOD*in3%MOD)%MOD;
			sz[Q]+=sz[P];
		}
		if(in1==2){
			read(in2),read(in3);
			if(find(in2)!=find(in3)){
				puts("-1");
				continue;
			}
			ll lb=0,rb=1000000000,mid=114514;
			while(lb<rb){
				mid=(lb+rb)/2;
				ll tmp1=in2,tmp2=in3;
				while(id[tmp1]!=tmp1&&dis[tmp1]<=mid)tmp1=id[tmp1];
				while(id[tmp2]!=tmp2&&dis[tmp2]<=mid)tmp2=id[tmp2];
				if(tmp1==tmp2)rb=mid;
				else lb=mid+1;
			}
			X=(X+lb)%n;
			printf("%lld\n",lb);
		}
		if(in1==3){
			read(in2);
			printf("%lld\n",Sz[find(in2)]);
		}
		if(in1==4){
			read(in2);
			X=(X+in2)%n;
		}
	}
	return 0;
}
0