結果

問題 No.2296 Union Path Query (Hard)
ユーザー kotatsugamekotatsugame
提出日時 2023-05-05 23:28:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 912 ms / 7,000 ms
コード長 1,967 bytes
コンパイル時間 893 ms
コンパイル使用メモリ 74,884 KB
実行使用メモリ 59,568 KB
最終ジャッジ日時 2024-11-23 12:34:52
合計ジャッジ時間 26,285 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
15,744 KB
testcase_01 AC 47 ms
38,528 KB
testcase_02 AC 46 ms
38,400 KB
testcase_03 AC 48 ms
38,400 KB
testcase_04 AC 298 ms
45,820 KB
testcase_05 AC 301 ms
45,824 KB
testcase_06 AC 391 ms
47,468 KB
testcase_07 AC 377 ms
48,596 KB
testcase_08 AC 390 ms
48,592 KB
testcase_09 AC 299 ms
35,264 KB
testcase_10 AC 305 ms
35,304 KB
testcase_11 AC 314 ms
35,200 KB
testcase_12 AC 317 ms
32,644 KB
testcase_13 AC 127 ms
17,408 KB
testcase_14 AC 118 ms
16,768 KB
testcase_15 AC 425 ms
48,744 KB
testcase_16 AC 382 ms
40,760 KB
testcase_17 AC 226 ms
24,448 KB
testcase_18 AC 551 ms
49,876 KB
testcase_19 AC 394 ms
33,060 KB
testcase_20 AC 541 ms
49,880 KB
testcase_21 AC 515 ms
48,204 KB
testcase_22 AC 500 ms
48,336 KB
testcase_23 AC 288 ms
49,196 KB
testcase_24 AC 246 ms
32,340 KB
testcase_25 AC 309 ms
54,112 KB
testcase_26 AC 307 ms
54,240 KB
testcase_27 AC 731 ms
54,108 KB
testcase_28 AC 734 ms
54,236 KB
testcase_29 AC 826 ms
56,820 KB
testcase_30 AC 912 ms
56,816 KB
testcase_31 AC 822 ms
59,568 KB
testcase_32 AC 797 ms
58,516 KB
testcase_33 AC 701 ms
55,448 KB
testcase_34 AC 543 ms
51,720 KB
testcase_35 AC 486 ms
50,400 KB
testcase_36 AC 400 ms
46,720 KB
testcase_37 AC 750 ms
49,912 KB
testcase_38 AC 769 ms
49,912 KB
testcase_39 AC 772 ms
50,424 KB
testcase_40 AC 765 ms
50,296 KB
testcase_41 AC 10 ms
15,744 KB
testcase_42 AC 7 ms
15,744 KB
testcase_43 AC 10 ms
15,744 KB
testcase_44 AC 412 ms
50,648 KB
testcase_45 AC 468 ms
50,544 KB
testcase_46 AC 458 ms
52,756 KB
testcase_47 AC 507 ms
52,928 KB
testcase_48 AC 478 ms
52,484 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