結果

問題 No.2002 Range Swap Query
ユーザー vjudge1vjudge1
提出日時 2024-11-06 02:32:53
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 718 ms / 2,000 ms
コード長 1,625 bytes
コンパイル時間 1,501 ms
コンパイル使用メモリ 158,872 KB
実行使用メモリ 92,120 KB
最終ジャッジ日時 2024-11-06 02:33:02
合計ジャッジ時間 6,736 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 6 ms
6,816 KB
testcase_09 AC 5 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 5 ms
6,816 KB
testcase_12 AC 390 ms
88,928 KB
testcase_13 AC 389 ms
89,628 KB
testcase_14 AC 390 ms
89,480 KB
testcase_15 AC 371 ms
85,200 KB
testcase_16 AC 400 ms
89,956 KB
testcase_17 AC 319 ms
92,120 KB
testcase_18 AC 102 ms
7,340 KB
testcase_19 AC 718 ms
34,360 KB
testcase_20 AC 79 ms
8,452 KB
testcase_21 AC 67 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
struct t1
{
	int l,r,x;
}t[1000000*40+1000000+5];
int tot;
int n,m,q;
int ask(int p,int l,int r,int u,int v,int k)
{
	if(!p)
	{
		return k;
	}
	if(u<=l&&v>=r)
	{
		return t[p].x;
	}
	int mid=(l+r)>>1;
	int id=k;
	if(v>mid)
	{
		id=ask(t[p].r,mid+1,r,u,v,id);
	}
	if(u<=mid)
	{
		int cur=id,L=1,R=m;
		if(id!=k)
		{
			while(L!=l||R!=mid)
			{
				int Mid=(L+R)>>1;
				if(mid<=Mid)
				{
					cur=t[cur].l;
					R=Mid;
				}
				else
				{
					cur=t[cur].r;
					L=Mid+1;
				}
			}
		}
		else
		{
			cur=t[p].l;
		}
		return ask(cur,l,mid,u,v,id);
	}
	return id;
}
void change(int &p,int l,int r,int x,int k,int va)
{
	if(!p)
	{
		p=++tot;
		t[p].l=t[p].r=0;
		t[p].x=k;
	}
	if(l==r)
	{
		t[p].x=va;
		return;
	}
	int mid=(l+r)>>1;
	if(x<=mid)
	{
		change(t[p].l,l,mid,x,k,va);
	}
	else
	{
		change(t[p].r,mid+1,r,x,k,va);
	}
	int id=k;
	if(t[p].r)
	{
		id=t[t[p].r].x;
	}
	if(id!=k)
	{
		int cur=id,L=1,R=m;
		while(L!=l||R!=mid)
		{
			int Mid=(L+R)>>1;
			if(mid<=Mid)
			{
				cur=t[cur].l;
				R=Mid;
			}
			else
			{
				cur=t[cur].r;
				L=Mid+1;
			}
			if(!cur)
			{
				break;
			}
		}
		if(cur)
		{
			id=t[cur].x;
		}
	}
	else if(t[p].l)
	{
		id=t[t[p].l].x;
	}
	t[p].x=id;
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(0);
	t[0].l=t[0].r=0;
	cin>>n>>m>>q;
	tot=n;
	for(int i=1;i<=n;i++)
	{
		t[i].l=t[i].r=0;
		t[i].x=i;
	}
	for(int i=1;i<=m;i++)
	{
		int a,b;
		cin>>a>>b;
		if(a!=b)
		{
			change(a,1,m,i,a,b);
			change(b,1,m,i,b,a);
		}
	}
	for(int i=1;i<=q;i++)
	{
		int l,r,k;
		cin>>l>>r>>k;
		cout<<ask(k,1,m,l,r,k);
		cout<<"\n";
	}
	return 0;
}
0