QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#559747#8220. 众生之门acwing_gza0 0ms8020kbC++142.5kb2024-09-12 08:55:482024-09-12 08:55:48

Judging History

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

  • [2024-09-12 08:55:48]
  • 评测
  • 测评结果:0
  • 用时:0ms
  • 内存:8020kb
  • [2024-09-12 08:55:48]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
namespace gza{
	#define pb push_back
	#define MT int TTT=R;while(TTT--)
	#define pc putchar
	#define R read()
	#define fo(i,a,b) for(signed i=a;i<=b;i++)
	#define rep(i,a,b) for(signed i=a;i>=b;i--)
	#define m1(a,b) memset(a,b,sizeof a)
	namespace IO
	{
		inline int read()
		{
		    int x=0;
		    char ch=getchar();
		    bool f=0;
		    while(!isdigit(ch)){if(ch=='-') f=1;ch=getchar();}
		    while(isdigit(ch)) x=(x<<1)+(x<<3)+(ch^48),ch=getchar();
		    if(f) x=-x;
		    return x;
		}
		template<typename T> inline void write(T x)
		{
		    if(x<0) pc('-'),x=-x;
		    if(x>9) write(x/10);
		    pc(x%10+'0');
		}
	};
	using namespace IO;

	const int N=5e4+10,M=16;
	int n,s,t,ans;
	vector<int> g[N];
	int f[M][N];
	int deg[N],dep[N];
	int p[N],ansp[N];
	void dfs(int u,int fa)
	{
		f[u][0]=fa;
		for(auto j:g[u]) if(j!=fa) dep[j]=dep[u]+1,dfs(j,u);
	}
	int lca(int a,int b)
	{
		if(dep[a]<dep[b]) swap(a,b);
		rep(i,15,0) if(dep[f[i][a]]>=dep[b]) a=f[i][a];
		if(a==b) return a;
		rep(i,15,0) if(f[i][a]!=f[i][b]) a=f[i][a],b=f[i][b];
		return f[0][a];
	}
	int dis(int a,int b)
	{
		return dep[a]+dep[b]-2*dep[lca(a,b)];
	}
	int calc()
	{
		int res=0;
		fo(i,1,n-1) res^=dis(p[i],p[i+1]);
		return res;
	}
	int get(int x)
	{
		return dis(p[x],p[x-1])^dis(p[x],p[x+1]);
	}
	void solve(){
		n=R,s=R,t=R;
		fo(i,1,n) g[i].clear(),deg[i]=dep[i]=p[i]=ansp[i]=0;
		fo(i,1,n) fo(j,0,15) f[j][i]=0;
		fo(i,2,n)
		{
			int u=R,v=R;
			g[u].pb(v),g[v].pb(u);
			deg[u]++,deg[v]++;
		}
		dfs(1,0);
		fo(j,1,15) fo(i,1,n) f[j][i]=f[j-1][f[j-1][i]];
		int maxd=(*max_element(deg+1,deg+n+1));
		p[1]=s,p[n]=t;
		fo(i,1,n) if(i!=s&&i!=t) p[i-(i>s)-(i>t)+1]=i;
		if(maxd==n-1)
		{
			fo(i,1,n) write(p[i]),pc(' ');
			puts("");
		}
		else if(n<=9)
		{
			int res=calc();
			fo(i,1,n) ansp[i]=p[i];
			do
			{
				ans=calc();
				if(ans<res)
				{
					fo(i,1,n) ansp[i]=p[i];
					res=ans;
				}
			}while(next_permutation(p+2,p+n));
			// cout<<res<<endl;
			// fo(i,1,n) p[i]=ansp[i];
			// write(calc()),puts("");
			fo(i,1,n) write(ansp[i]),pc(' ');
			puts("");
		}
		else
		{
			ans=calc();
			while(ans>1)
			{
				int x=rand()%(n-2)+2,y=rand()%(n-2)+2;
				while(x==y) y=rand()%(n-2)+2;
				ans^=get(x)^get(y);
				swap(p[x],p[y]);
				ans^=get(x)^get(y);
			}
			fo(i,1,n) write(p[i]),pc(' ');
			puts("");
		}
	}
	void main(){
		srand(time(0));
		MT solve();
	}
}
signed main(){
	
	gza::main();
}

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 8020kb

input:

114
6 5 6
2 6
1 6
4 5
3 1
6 4
6 3 6
2 4
4 1
6 4
1 5
5 3
6 6 1
5 2
1 2
4 6
2 4
3 2
6 6 1
3 6
5 3
1 6
4 2
2 5
6 3 1
5 3
2 4
1 5
4 3
6 3
4 3 4
2 3
1 4
4 3
6 3 1
2 3
6 3
4 3
1 6
5 1
5 3 2
1 2
4 2
2 3
5 2
6 1 4
2 1
5 2
4 1
6 2
3 6
6 5 1
4 2
6 5
1 3
2 6
3 2
4 4 1
2 4
3 4
1 4
6 2 5
3 5
4 6
1 4
6 2
5 4
6 1 ...

output:

5 1 2 3 4 6 
3 1 2 4 5 6 
6 3 2 4 5 1 
6 2 3 5 4 1 
3 4 5 2 6 1 
3 2 1 4 
3 2 4 5 6 1 
3 1 4 5 2 
1 2 5 3 6 4 
5 2 3 4 6 1 
4 2 3 1 
2 1 3 6 4 5 
1 2 4 5 6 3 
3 2 4 6 5 1 
2 1 5 6 3 4 
3 1 2 5 6 4 
5 1 6 2 4 3 
1 2 4 3 5 
4 1 3 2 
3 1 5 2 4 
1 2 3 4 
3 4 1 2 
5 3 1 4 2 
5 2 4 3 1 
5 1 4 6 2 3 
4 1 5...

result:

wrong answer Your solution is worse than Jury's in test case 3. Yours:3 Jury's:1

Subtask #2:

score: 0
Skipped

Dependency #1:

0%

Subtask #3:

score: 0
Runtime Error

Test #11:

score: 0
Runtime Error

input:

14190
43 27 2
42 3
30 36
11 24
21 22
13 8
22 30
31 29
35 1
10 6
2 23
28 17
2 26
7 37
5 19
38 43
33 39
4 28
33 7
25 31
15 1
32 18
34 27
35 12
19 32
20 17
37 42
26 34
39 10
12 27
24 43
18 6
16 9
38 9
14 15
14 41
25 3
40 13
16 8
36 41
20 5
21 40
11 29
41 24 38
21 6
20 14
26 1
6 7
17 16
39 36
8 18
36 11...

output:


result:


Subtask #4:

score: 0
Time Limit Exceeded

Test #18:

score: 0
Time Limit Exceeded

input:

32752
15 3 4
14 12
4 12
1 10
9 13
7 6
12 5
1 12
9 15
7 9
8 12
2 6
11 6
9 3
6 10
13 12 2
10 11
10 5
1 4
12 11
4 6
2 13
6 5
9 6
8 13
6 3
4 8
13 7
15 3 6
15 10
4 2
8 5
10 3
1 3
15 2
8 4
12 9
7 8
11 8
6 13
8 12
14 8
6 12
15 5 7
8 14
10 13
11 13
13 5
2 14
15 8
15 1
6 2
7 15
9 13
15 3
6 13
15 4
12 5
15 10...

output:

3 15 12 9 8 14 6 5 11 10 2 13 1 7 4 
12 1 3 11 5 9 7 8 6 10 4 13 2 
3 1 2 4 5 7 8 9 10 11 12 13 14 15 6 
5 14 2 3 10 12 8 6 1 11 9 13 4 15 7 
10 4 2 15 13 1 5 14 6 7 11 9 3 12 8 
11 1 6 8 7 9 5 4 2 10 3 
11 1 2 3 4 5 6 7 8 14 12 13 10 15 9 
14 8 9 3 4 5 6 7 1 2 11 10 13 12 
5 9 8 4 7 1 6 2 11 10 3 
...

result:


Subtask #5:

score: 0
Time Limit Exceeded

Test #25:

score: 0
Time Limit Exceeded

input:

36059
13 9 4
5 9
10 3
3 1
13 5
12 5
7 4
2 8
8 10
4 9
11 7
6 11
1 4
13 12 6
4 12
13 9
11 2
6 12
9 12
8 5
7 6
5 3
3 7
10 8
1 5
2 10
13 10 8
3 1
5 9
4 8
6 11
7 13
13 5
1 10
12 13
9 4
11 9
2 11
8 10
12 1 4
9 2
2 12
3 2
12 11
8 2
7 4
5 1
4 1
11 7
10 9
6 9
13 10 12
7 5
11 9
12 10
9 8
3 10
8 5
4 13
13 7
6 ...

output:

9 12 8 2 5 3 1 13 7 6 10 11 4 
12 3 7 4 1 5 2 8 13 10 11 9 6 
10 13 2 3 1 5 6 7 9 11 12 4 8 
1 2 3 5 6 10 8 9 7 11 12 4 
10 1 2 13 5 4 7 3 8 9 11 6 12 
6 3 9 10 5 1 12 4 13 11 7 2 8 
1 4 11 6 7 2 3 9 12 10 13 5 8 
7 1 2 4 5 6 8 9 10 3 
11 4 10 5 8 13 6 12 3 2 9 7 1 
4 1 2 11 5 7 8 9 10 3 12 13 6 
6 ...

result:


Subtask #6:

score: 0
Runtime Error

Test #34:

score: 0
Runtime Error

input:

10
1000 165 244
175 661
738 362
280 462
776 922
231 578
963 615
639 836
32 418
519 220
565 733
239 951
768 847
196 200
246 119
591 288
994 586
313 46
971 515
512 811
228 908
627 339
33 337
447 488
616 319
399 727
921 615
421 509
167 354
905 382
20 356
875 414
619 904
824 940
435 244
953 663
719 962
...

output:


result:


Subtask #7:

score: 0
Skipped

Dependency #2:

0%