QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#555718#8220. 众生之门275307894a0 107ms35288kbC++142.9kb2024-09-10 08:38:352024-09-10 08:38:35

Judging History

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

  • [2024-09-10 08:38:35]
  • 评测
  • 测评结果:0
  • 用时:107ms
  • 内存:35288kb
  • [2024-09-10 08:38:35]
  • 提交

answer

#include<bits/stdc++.h>
#define Gc() getchar()
#define Me(x,y) memset(x,y,sizeof(x))
#define Mc(x,y) memcpy(x,y,sizeof(x))
#define d(x,y) ((m)*(x-1)+(y))
#define R(n) (rnd()%(n)+1)
#define Pc(x) putchar(x)
#define LB lower_bound
#define UB upper_bound
#define fi first
#define se second
#define eb emplace_back
#define all(x) x.begin(),x.end()
using namespace std;using ll=long long;using db=double;using lb=long db;using ui=unsigned;using ull=unsigned long long;using pii=pair<int,int>;
const int N=4e5+5,M=N*20+5,K=1e7+5,mod=998244353,Mod=mod-1;const db eps=1e-9;const ll INF=1e13+7;mt19937 rnd(263082);
#define Tp template<typename T>
#define Ts template<typename T,typename... Ar>
namespace Debug{
	Tp void _debug(char* f,T t){cerr<<f<<'='<<t<<endl;}
	Ts void _debug(char* f,T x,Ar... y){while(*f!=',') cerr<<*f++;cerr<<'='<<x<<",";_debug(f+1,y...);}
	#ifdef LOCAL
	#define gdb(...) _debug((char*)#__VA_ARGS__,__VA_ARGS__)
	#else 
	#define gdb(...) void()
	#endif
}using namespace Debug;
int n,s,t;vector<int> S[N];
namespace ST{
	int bg[N],df[N],en[N],fa[N],d[N],st[20][N],bh;
	void clear(){
		bh=0;
		for(int i=1;i<=n;i++) S[i].clear();
	}
	void make(int x,int La){
		bg[x]=++bh;d[x]=d[La]+1;df[bh]=x;
		for(int i:S[x]) if(i^La) make(i,x);
		en[x]=bh;
	}
	bool cmp(int x,int y){return d[x]<d[y];}
	void build(){
		make(1,0);
		copy(df+1,df+n+1,st[0]+1);
		for(int i=1;(1<<i)<=n;i++){
			for(int j=1;j+(1<<i)-1<=n;j++) st[i][j]=min(st[i-1][j],st[i-1][j+(1<<i-1)],cmp);
		}
	}
	int LCA(int x,int y){
		if(bg[x]>bg[y]) swap(x,y);
		if(bg[y]<=en[x]) return x;
		x=bg[x];y=bg[y];int d=__lg(y-x+1);
		return min(st[d][x],st[d][y-(1<<d)+1],cmp);
	}
	int dist(int x,int y){
		return d[x]+d[y]-2*d[LCA(x,y)];
	}
}
int p[N],ans[N],flag,sum;
void Solve(){
	scanf("%d%d%d",&n,&s,&t);
	ST::clear();
	for(int i=1;i<n;i++){
		int x,y;scanf("%d%d",&x,&y);
		S[x].push_back(y);S[y].push_back(x);
	}
	ST::build();
	p[1]=s;p[n]=t;
	int R=1;
	for(int i=2;i<n;i++){
		while(R==s||R==t) R++;
		p[i]=R++;
	}
	sum=0;flag=0;
	for(int i=1;i<n;i++) sum^=ST::dist(p[i],p[i+1]);
	
	auto check=[](){
		if(sum<=1){
			for(int i=1;i<=n;i++) printf("%d%c",p[i]," \n"[i==n]);
			return 1;
		}else if(sum<=3&&!flag){
			flag=1;
			copy(p+1,p+n+1,ans+1);
		}
		return 0;
	};

	if(check()) return;
	if(n>3){
		for(int i=1;i<=10*n;i++){
			int x=R(n),y=R(n);
			while(x==1||x==n) x=R(n);
			while(y==1||y==n||y==x) y=R(n);
			sum^=ST::dist(p[x-1],p[x])^ST::dist(p[x],p[x+1]);
			sum^=ST::dist(p[y-1],p[y])^ST::dist(p[y],p[y+1]);
			swap(p[x],p[y]);
			sum^=ST::dist(p[x-1],p[x])^ST::dist(p[x],p[x+1]);
			sum^=ST::dist(p[y-1],p[y])^ST::dist(p[y],p[y+1]);
			if(check()) return;
		}
	}
	for(int i=1;i<=n;i++) printf("%d%c",ans[i]," \n"[i==n]);
}
int main(){
	int t=1;
	scanf("%d",&t);
	while(t--) Solve();
	cerr<<clock()*1.0/CLOCKS_PER_SEC<<'\n';
}

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: 25456kb

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 2 3 4 5 1
6 2 5 4 3 1
3 2 4 5 6 1
3 1 2 4
3 5 2 6 4 1
3 1 4 5 2
1 2 5 3 6 4
5 3 2 4 6 1
4 2 3 1
2 1 3 6 4 5
1 5 4 2 6 3
3 2 4 5 6 1
2 6 5 1 3 4
3 1 2 5 6 4
5 6 1 2 4 3
1 2 4 3 5
4 3 1 2
3 1 5 2 4
1 3 2 4
3 1 4 2
5 3 1 4 2
5 4 3 2 1
5 6 2 4 1 3
4 1 2 5 6 3
5 1 2 3 6 4
5 1 4 ...

result:

wrong answer Your solution is worse than Jury's in test case 7. Yours:4 Jury's:0

Subtask #2:

score: 0
Skipped

Dependency #1:

0%

Subtask #3:

score: 0
Wrong Answer

Test #11:

score: 0
Wrong Answer
time: 107ms
memory: 29284kb

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:

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

result:

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

Subtask #4:

score: 0
Wrong Answer

Test #18:

score: 0
Wrong Answer
time: 92ms
memory: 24948kb

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 1 2 15 7 5 8 9 10 11 12 6 14 13 4
12 1 3 4 5 6 7 8 9 10 11 13 2
3 7 2 15 12 1 10 5 9 13 14 8 4 11 6
5 1 2 11 4 6 8 9 10 3 15 13 14 12 7
10 15 2 13 6 11 5 7 4 12 9 14 1 3 8
11 4 2 1 5 6 7 8 9 10 3
11 1 2 3 4 5 6 7 8 10 12 13 14 15 9
14 1 2 3 10 11 6 9 8 7 4 5 13 12
5 1 2 4 6 7 8 9 10 11 3
8 5 2 3 4...

result:

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

Subtask #5:

score: 0
Wrong Answer

Test #25:

score: 0
Wrong Answer
time: 90ms
memory: 26512kb

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 3 1 5 12 13 7 8 10 11 2 6 4
12 3 2 1 4 9 10 7 13 8 11 5 6
10 4 3 5 11 12 2 7 9 1 6 13 8
1 2 3 5 6 7 8 9 10 11 12 4
10 1 2 3 4 5 6 7 8 9 11 13 12
6 1 2 3 4 11 7 9 10 5 12 13 8
1 2 3 4 5 6 7 9 10 11 12 13 8
7 8 10 2 4 5 1 9 6 3
11 13 12 4 9 6 7 5 8 2 3 10 1
4 1 2 3 5 7 8 9 10 13 12 11 6
6 1 2 3 4 5 ...

result:

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

Subtask #6:

score: 0
Wrong Answer

Test #34:

score: 0
Wrong Answer
time: 4ms
memory: 35288kb

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:

165 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 59 58 60 61 62 63 64 65 66 67 68 69 70 71 72 764 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101...

result:

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

Subtask #7:

score: 0
Skipped

Dependency #2:

0%