結果

問題 No.2296 Union Path Query (Hard)
ユーザー kotatsugamekotatsugame
提出日時 2023-05-05 23:28:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 632 ms / 7,000 ms
コード長 1,967 bytes
コンパイル時間 862 ms
コンパイル使用メモリ 74,752 KB
実行使用メモリ 59,700 KB
最終ジャッジ日時 2024-05-02 18:47:59
合計ジャッジ時間 22,551 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
15,744 KB
testcase_01 AC 40 ms
38,400 KB
testcase_02 AC 41 ms
38,400 KB
testcase_03 AC 42 ms
38,528 KB
testcase_04 AC 249 ms
45,916 KB
testcase_05 AC 243 ms
46,080 KB
testcase_06 AC 323 ms
47,596 KB
testcase_07 AC 313 ms
48,600 KB
testcase_08 AC 308 ms
48,592 KB
testcase_09 AC 232 ms
35,144 KB
testcase_10 AC 242 ms
35,176 KB
testcase_11 AC 243 ms
35,328 KB
testcase_12 AC 231 ms
32,648 KB
testcase_13 AC 108 ms
17,536 KB
testcase_14 AC 102 ms
16,768 KB
testcase_15 AC 330 ms
48,744 KB
testcase_16 AC 305 ms
40,764 KB
testcase_17 AC 184 ms
24,448 KB
testcase_18 AC 430 ms
49,744 KB
testcase_19 AC 299 ms
33,184 KB
testcase_20 AC 423 ms
49,876 KB
testcase_21 AC 399 ms
48,204 KB
testcase_22 AC 390 ms
48,208 KB
testcase_23 AC 236 ms
49,072 KB
testcase_24 AC 197 ms
32,220 KB
testcase_25 AC 251 ms
54,112 KB
testcase_26 AC 257 ms
54,240 KB
testcase_27 AC 509 ms
54,244 KB
testcase_28 AC 498 ms
54,240 KB
testcase_29 AC 606 ms
56,820 KB
testcase_30 AC 577 ms
56,820 KB
testcase_31 AC 632 ms
59,700 KB
testcase_32 AC 590 ms
58,520 KB
testcase_33 AC 502 ms
55,444 KB
testcase_34 AC 395 ms
51,716 KB
testcase_35 AC 350 ms
50,272 KB
testcase_36 AC 306 ms
46,720 KB
testcase_37 AC 546 ms
49,912 KB
testcase_38 AC 540 ms
49,916 KB
testcase_39 AC 532 ms
50,424 KB
testcase_40 AC 537 ms
50,292 KB
testcase_41 AC 10 ms
15,872 KB
testcase_42 AC 9 ms
15,872 KB
testcase_43 AC 9 ms
15,616 KB
testcase_44 AC 340 ms
50,392 KB
testcase_45 AC 353 ms
50,552 KB
testcase_46 AC 368 ms
52,796 KB
testcase_47 AC 391 ms
52,924 KB
testcase_48 AC 373 ms
52,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<array>
#include<cassert>
using namespace std;
int N,X,Q;
vector<pair<int,int> >G[2<<17];
int par[2<<17];
int pr[18][2<<17],depth[2<<17];
long long D[2<<17];
vector<int>V[2<<17];
long long ans[2<<17];
array<int,2>uv[2<<17];
void dfs(int u,int p,int dep,long long dist,int AP)
{
	par[u]=AP;
	pr[0][u]=p;
	for(int k=1;k<18;k++)
	{
		if(pr[k-1][u]==-1)pr[k][u]=-1;
		else pr[k][u]=pr[k-1][pr[k-1][u]];
	}
	depth[u]=dep;
	D[u]=dist;
	V[AP].push_back(u);
	for(pair<int,int>e:G[u])if(e.first!=p)
	{
		dfs(e.first,u,dep+1,dist+e.second,AP);
	}
}
int lca(int u,int v)
{
	if(depth[u]>depth[v])swap(u,v);
	for(int k=0;k<18;k++)if(depth[v]-depth[u]>>k&1)v=pr[k][v];
	if(u==v)return u;
	for(int k=18;k--;)if(pr[k][u]!=pr[k][v])
	{
		u=pr[k][u];
		v=pr[k][v];
	}
	return pr[0][u];
}
long long dist(int u,int v)
{
	if(par[u]!=par[v])return -1LL;
	int w=lca(u,v);
	return D[u]+D[v]-2*D[w];
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N>>X>>Q;
	for(int i=0;i<N;i++)
	{
		V[i].push_back(i);
		for(int k=0;k<18;k++)pr[k][i]=-1;
		par[i]=i;
		uv[i][0]=uv[i][1]=i;
	}
	for(;Q--;)
	{
		int op;cin>>op;
		if(op==1)
		{
			int v,w;cin>>v>>w;
			int u=X;
			int pu=par[u],pv=par[v];
			if(V[pu].size()<V[pv].size())
			{
				swap(pu,pv);
				swap(u,v);
			}
			dfs(v,u,depth[u]+1,D[u]+w,pu);
			array<int,2>now=uv[pu];
			if(ans[pu]<ans[pv])
			{
				ans[pu]=ans[pv];
				now=uv[pv];
			}
			for(int x:uv[pu])for(int y:uv[pv])
			{
				long long d=dist(x,y);
				if(ans[pu]<d)
				{
					ans[pu]=d;
					now[0]=x;
					now[1]=y;
				}
			}
			uv[pu]=now;
			G[u].push_back(make_pair(v,w));
			G[v].push_back(make_pair(u,w));
		}
		else if(op==2)
		{
			int u,v;cin>>u>>v;
			if(par[u]!=par[v])cout<<"-1\n";
			else
			{
				long long d=dist(u,v);
				cout<<d<<"\n";
				X=(X+d%N)%N;
			}
		}
		else if(op==3)
		{
			int v;cin>>v;
			v=par[v];
			cout<<ans[v]<<"\n";
		}
		else
		{
			int v;cin>>v;
			X=(X+v)%N;
		}
	}
}
0