QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#481010#7245. Frank SinatraHadtstiWA 1ms8048kbC++141.4kb2024-07-16 20:05:502024-07-16 20:05:52

Judging History

你现在查看的是最新测评结果

  • [2024-07-16 20:05:52]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:8048kb
  • [2024-07-16 20:05:50]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
int T,n,q,x,y,z,fa[100010],a[100010],num,dfn[200010],rk[200010],cnt[100010],s[1010],ans[100010];
bool fg[100010];
vector<pair<int,int> >E[100010];
struct query
{
	int l,r,id;
	friend bool operator <(const query &a,const query &b)
	{
		return a.l/T^b.l/T?a.l/T<b.l/T:(a.l/T&1?a.r<b.r:a.r>b.r);
	}
}Q[100010];
void dfs(int x)
{
	dfn[x]=++num;
	rk[num]=x;
	for(pair<int,int>i:E[x])
	{
		int y=i.first,z=i.second;
		if(y!=fa[x])
		{
			fa[y]=x;
			a[y]=z;
			dfs(y);
		}
	}
	rk[++num]=x;
}
inline void update(int x)
{
	if(a[x]>n)
		return;
	if(fg[x]^=1)
	{
		if(!(cnt[a[x]]++))
			s[a[x]/T]++;
	}
	else
		if(!(--cnt[a[x]]))
			s[a[x]/T]--;	
} 
int main()
{
	scanf("%d%d",&n,&q);
	T=sqrt(n);
	for(int i=1;i<n;i++)
	{
		scanf("%d%d%d",&x,&y,&z);
		E[x].push_back({y,z});
		E[y].push_back({x,z});
	}
	dfs(1);
	a[1]=n+1;
	for(int i=1;i<=q;i++)
	{
		scanf("%d%d",&x,&y);
		if(dfn[x]>dfn[y])
			swap(x,y);
		Q[i]={x,y,i};
	}
	sort(Q+1,Q+q+1);
	for(int i=1,L=1,R=1;i<=q;i++)
	{
		while(R<dfn[Q[i].r])
			update(rk[++R]);
		while(L>dfn[Q[i].l])
			update(rk[L--]);
		while(R>dfn[Q[i].r])
			update(rk[R--]);
		while(L<dfn[Q[i].l])
			update(rk[++L]);
		for(int j=0;;j++)
			if(s[i]<T)
			{
				for(int k=i*T;k<(j+1)*T;k++)
					if(!cnt[k])
					{
						ans[i]=k;
						break;
					} 
				break;
			}
	}
	for(int i=1;i<=q;i++)
		printf("%d\n",ans[i]);
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 1ms
memory: 8048kb

input:

7 6
2 1 1
3 1 2
1 4 0
4 5 1
5 6 3
5 7 4
1 3
4 1
2 4
2 5
3 5
3 7

output:

0
0
0
0
0
0

result:

wrong answer 2nd numbers differ - expected: '1', found: '0'