結果

問題 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
コンパイル時間 818 ms
コンパイル使用メモリ 84,284 KB
実行使用メモリ 81,696 KB
最終ジャッジ日時 2024-05-02 18:20:50
合計ジャッジ時間 34,467 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
28,032 KB
testcase_01 AC 49 ms
49,280 KB
testcase_02 AC 48 ms
49,152 KB
testcase_03 AC 50 ms
49,152 KB
testcase_04 AC 363 ms
62,592 KB
testcase_05 AC 329 ms
62,464 KB
testcase_06 AC 654 ms
67,984 KB
testcase_07 AC 474 ms
72,688 KB
testcase_08 AC 458 ms
72,696 KB
testcase_09 AC 353 ms
56,328 KB
testcase_10 AC 393 ms
56,292 KB
testcase_11 AC 432 ms
56,500 KB
testcase_12 AC 422 ms
53,032 KB
testcase_13 AC 126 ms
30,592 KB
testcase_14 AC 114 ms
29,312 KB
testcase_15 AC 887 ms
70,624 KB
testcase_16 AC 744 ms
62,124 KB
testcase_17 AC 357 ms
40,932 KB
testcase_18 AC 1,011 ms
76,784 KB
testcase_19 AC 607 ms
53,948 KB
testcase_20 AC 965 ms
76,668 KB
testcase_21 AC 894 ms
72,828 KB
testcase_22 AC 969 ms
72,156 KB
testcase_23 AC 347 ms
73,188 KB
testcase_24 AC 236 ms
50,380 KB
testcase_25 AC 327 ms
73,264 KB
testcase_26 AC 325 ms
73,256 KB
testcase_27 AC 790 ms
73,256 KB
testcase_28 AC 790 ms
73,260 KB
testcase_29 AC 906 ms
77,036 KB
testcase_30 AC 939 ms
77,028 KB
testcase_31 AC 1,237 ms
81,696 KB
testcase_32 AC 1,140 ms
80,032 KB
testcase_33 AC 936 ms
75,476 KB
testcase_34 AC 709 ms
69,872 KB
testcase_35 AC 592 ms
67,792 KB
testcase_36 TLE -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
権限があれば一括ダウンロードができます

ソースコード

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