QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#698274 | #9532. 长野原龙势流星群 | zwh2008 | 0 | 176ms | 12476kb | C++14 | 1.0kb | 2024-11-01 18:32:03 | 2024-11-01 18:32:04 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
using ll=long long;
using pi=pair<int,int>;
#define fi first
#define se second
const int N=2e5+5;
int n,sz[N],fa[N],Fa[N];
double val[N],ans[N];
bool vis[N];
priority_queue<pair<double,int>>q;
int gf(int x){return x==fa[x]?x:fa[x]=gf(fa[x]);}
int main() {
#ifndef ONLINE_JUDGE
freopen(".in","r",stdin);
freopen(".out","w",stdout);
#endif
ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
cout<<fixed<<setprecision(7);
cin>>n;
for(int i=2;i<=n;i++)cin>>Fa[i];
for(int i=1,x;i<=n;i++)cin>>x,val[i]=x,sz[i]=1,q.push({val[i],i});
iota(fa+1,fa+n+1,1);
while(q.size()>1) {
pair<double,int>u=q.top();q.pop();
int x=u.se,p=gf(Fa[u.se]);
if(vis[x])continue;
ans[x]=u.fi,vis[x]=1;
if(p&&val[x]>val[p]) {
val[p]=(val[p]*sz[p]+val[x]*sz[x])/(sz[x]+sz[p]);
fa[x]=p,sz[p]+=sz[x],q.push({val[p],p});
}
}
for(int i=1;i<=n;i++)cout<<ans[i]<<'\n';
return 0;
}
詳細信息
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 7944kb
input:
2000 1 2 2 4 5 2 3 6 4 2 7 2 8 14 8 12 1 14 4 14 8 18 9 2 7 22 20 22 14 29 28 16 6 21 23 6 21 14 13 9 1 4 18 13 2 39 21 33 18 20 38 27 27 1 49 5 51 3 31 24 10 42 2 44 13 9 35 66 27 60 67 59 29 40 53 2 33 43 26 43 62 16 78 45 14 10 73 69 41 35 25 26 2 70 54 1 54 48 5 36 44 28 90 29 51 51 93 82 95 45 ...
output:
883838885.9230769 887174926.0000000 881025216.7096775 912609654.6666666 872318573.5000000 831791515.1538461 867874850.0000000 892392319.1666666 836427216.0000000 869519853.8000000 693335785.3750000 925100890.0000000 994728511.5000000 950304719.0000000 808673189.2500000 866832100.5714285 963096715.00...
result:
wrong answer 543rd numbers differ - expected: '24744.0000000', found: '0.0000000', error = '1.0000000'
Subtask #2:
score: 0
Wrong Answer
Test #32:
score: 0
Wrong Answer
time: 176ms
memory: 12476kb
input:
200000 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 52 52...
output:
792545632.4154930 794937150.3513514 794843085.4776119 804131414.2264150 805846267.1666666 806376230.0000000 778037203.6904762 815562308.1500000 776087995.6012658 809328819.5882353 767722826.5953758 771619640.6969697 800107654.4769231 879639965.3333334 775670912.4369748 772183642.8333334 854701834.66...
result:
wrong answer 165256th numbers differ - expected: '1812.0000000', found: '0.0000000', error = '1.0000000'
Subtask #3:
score: 0
Skipped
Dependency #1:
0%
Subtask #4:
score: 0
Skipped
Dependency #2:
0%