結果

問題 No.2296 Union Path Query (Hard)
ユーザー kotatsugamekotatsugame
提出日時 2023-05-05 23:12:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,533 bytes
コンパイル時間 978 ms
コンパイル使用メモリ 84,260 KB
実行使用メモリ 81,792 KB
最終ジャッジ日時 2024-11-23 11:42:33
合計ジャッジ時間 49,453 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
29,640 KB
testcase_01 AC 53 ms
49,152 KB
testcase_02 AC 54 ms
49,280 KB
testcase_03 AC 54 ms
49,280 KB
testcase_04 AC 428 ms
62,592 KB
testcase_05 AC 404 ms
62,464 KB
testcase_06 AC 804 ms
68,112 KB
testcase_07 AC 570 ms
72,816 KB
testcase_08 AC 571 ms
72,700 KB
testcase_09 AC 433 ms
56,332 KB
testcase_10 AC 499 ms
56,416 KB
testcase_11 AC 535 ms
56,504 KB
testcase_12 AC 554 ms
53,032 KB
testcase_13 AC 140 ms
30,592 KB
testcase_14 AC 129 ms
29,312 KB
testcase_15 AC 961 ms
70,616 KB
testcase_16 AC 877 ms
62,068 KB
testcase_17 AC 437 ms
40,928 KB
testcase_18 AC 1,245 ms
76,792 KB
testcase_19 AC 758 ms
54,080 KB
testcase_20 AC 1,138 ms
76,728 KB
testcase_21 AC 1,111 ms
72,900 KB
testcase_22 AC 1,139 ms
72,284 KB
testcase_23 AC 424 ms
73,112 KB
testcase_24 AC 284 ms
50,508 KB
testcase_25 AC 388 ms
73,260 KB
testcase_26 AC 386 ms
73,264 KB
testcase_27 AC 1,111 ms
73,264 KB
testcase_28 AC 1,130 ms
73,260 KB
testcase_29 AC 1,259 ms
77,160 KB
testcase_30 AC 1,262 ms
77,028 KB
testcase_31 AC 1,699 ms
81,792 KB
testcase_32 AC 1,611 ms
79,908 KB
testcase_33 AC 1,324 ms
75,484 KB
testcase_34 AC 1,032 ms
69,744 KB
testcase_35 AC 899 ms
67,664 KB
testcase_36 TLE -
testcase_37 AC 1,518 ms
71,420 KB
testcase_38 AC 1,465 ms
71,428 KB
testcase_39 AC 1,514 ms
72,068 KB
testcase_40 AC 1,522 ms
71,980 KB
testcase_41 AC 21 ms
28,288 KB
testcase_42 AC 21 ms
28,160 KB
testcase_43 AC 21 ms
28,104 KB
testcase_44 AC 645 ms
74,324 KB
testcase_45 AC 645 ms
74,528 KB
testcase_46 AC 577 ms
76,824 KB
testcase_47 AC 619 ms
77,376 KB
testcase_48 AC 577 ms
81,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<set>
#include<cassert>
using namespace std;
int N,X,Q;
vector<pair<int,int> >G[2<<17];
int par[2<<17];
int prD[2<<17];
int pr[18][2<<17],depth[2<<17];
long long D[2<<17];
set<pair<long long,int> >mD[2<<17];
vector<int>V[2<<17];
long long ans[2<<17];
long long dfs(int u,int p,int dep,long long dist,int prd,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;
	prD[u]=prd;
	V[AP].push_back(u);
	mD[u].clear();
	long long md=0;
	for(pair<int,int>e:G[u])if(e.first!=p)
	{
		long long d=dfs(e.first,u,dep+1,dist+e.second,e.second,AP)+e.second;
		mD[u].insert(make_pair(d,e.first));
		md=max(md,d);
	}
	return md;
}
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];
}
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;
	}
	for(;Q--;)
	{
		int op;cin>>op;
		if(op==1)
		{
			int v,w;cin>>v>>w;
			int u=X;
			if(V[par[u]].size()<V[par[v]].size())swap(u,v);
			ans[par[u]]=max(ans[par[u]],ans[par[v]]);
			long long nd=dfs(v,u,depth[u]+1,D[u]+w,w,par[u])+w;
			if(mD[u].empty())
			{
				ans[par[u]]=max(ans[par[u]],nd);
			}
			else
			{
				auto it=mD[u].end();it--;
				ans[par[u]]=max(ans[par[u]],it->first+nd);
			}
			mD[u].insert(make_pair(nd,v));
			{
				int x=u;
				while(pr[0][x]!=-1)
				{
					int y=pr[0][x];
					auto it=mD[x].end();it--;
					while(!mD[y].empty()&&mD[y].rbegin()->second==x)
					{
						auto jt=mD[y].end();jt--;
						mD[y].erase(jt);
					}
					if(mD[y].empty())
					{
						ans[par[u]]=max(ans[par[u]],it->first+prD[x]);
					}
					else
					{
						auto jt=mD[y].end();
						jt--;
						assert(jt->second!=x);
						ans[par[u]]=max(ans[par[u]],it->first+prD[x]+jt->first);
					}
					mD[y].insert(make_pair(it->first+prD[x],x));
					x=y;
				}
			}
			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
			{
				int w=lca(u,v);
				long long d=D[u]+D[v]-2*D[w];
				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