QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#210708#6638. Treelectionxia_mcWA 104ms5836kbC++14985b2023-10-11 19:12:542023-10-11 19:12:55

Judging History

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

  • [2023-10-11 19:12:55]
  • 评测
  • 测评结果:WA
  • 用时:104ms
  • 内存:5836kb
  • [2023-10-11 19:12:54]
  • 提交

answer

// Problem: F - Treelection
// Contest: Virtual Judge - 20231007 杂题选讲(UCup)- PB
// URL: https://vjudge.net/contest/586352#problem/F
// Memory Limit: 254 MB
// Time Limit: 3000 ms
// 
// Powered by CP Editor (https://cpeditor.org)

#include<stdio.h>

template<typename dy> dy max(dy x,dy y){return x>y?x:y;}
template<typename dy> dy min(dy x,dy y){return x<y?x:y;}
const int N=1e6+5;
int n,fa[N],dp[N];
bool f[N];
bool check(int x){
	for(int i=1;i<=n;i++) dp[i]=0;
	for(int i=n;i>=1;i--) dp[i]=max(dp[i]-x,0),dp[fa[i]]+=dp[i]+1;
	return !dp[1];
}
int main(){
	int T;scanf("%d",&T);
	while(T--){
		scanf("%d",&n);
		for(int i=2;i<=n;i++) scanf("%d",&fa[i]);
		int l=0,r=n;
		while(l<r){
			// printf("%d %d ",l,r);
			int mid=l+r>>1;
			if(!check(mid)) l=mid+1;
			else r=mid;
		}
		f[1]=!check(l-1);
		for(int i=2;i<=n;i++) f[i]=f[fa[i]]&dp[fa[i]];
		for(int i=1;i<=n;i++) {printf("%d",f[i]);f[i]=0;fa[i]=0;} puts("");
	}
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 5736kb

input:

2
4
1 2 3
5
1 1 2 2

output:

1100
10000

result:

ok 2 lines

Test #2:

score: -100
Wrong Answer
time: 104ms
memory: 5836kb

input:

10
100000
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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 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 10...

output:

111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111...

result:

wrong answer 1st lines differ - expected: '111111111111111111111111111111...0000000000000000000000000000000', found: '111111111111111111111111111111...1111111111111111111111111111111'