QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#709465#9532. 长野原龙势流星群zlt0 172ms23008kbC++141.6kb2024-11-04 14:53:022024-11-04 14:53:02

Judging History

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

  • [2024-11-04 14:53:02]
  • 评测
  • 测评结果:0
  • 用时:172ms
  • 内存:23008kb
  • [2024-11-04 14:53:02]
  • 提交

answer

#include <bits/stdc++.h>
#define pb emplace_back
#define fst first
#define scd second
#define mkp make_pair
#define uint unsigned
#define mems(a, x) memset((a), (x), sizeof(a))

using namespace std;
typedef long long ll;
typedef double db;
typedef unsigned long long ull;
typedef long double ldb;
typedef pair<ll, ll> pii;

const int maxn = 200100;

ll n, a[maxn], b[maxn], fa[maxn], p[maxn];
db ans[maxn];
vector<int> G[maxn];

struct frac {
	ll x, y;
	frac(ll a = 0, ll b = 1) : x(a), y(b) {}
};

inline bool operator < (const frac &a, const frac &b) {
	return a.x * b.y < a.y * b.x;
}

struct node {
	int u;
	frac x;
};

inline bool operator < (const node &a, const node &b) {
	return a.x < b.x;
}

int find(int x) {
	return fa[x] == x ? x : fa[x] = find(fa[x]);
}

void solve() {
	scanf("%lld", &n);
	for (int i = 2; i <= n; ++i) {
		scanf("%lld", &p[i]);
	}
	for (int i = 1; i <= n; ++i) {
		scanf("%lld", &a[i]);
		fa[i] = i;
	}
	priority_queue<node> pq;
	for (int i = 1; i <= n; ++i) {
		node u;
		u.u = i;
		u.x = frac(a[i], 1);
		pq.push(u);
		b[i] = 1;
	}
	while (pq.size()) {
		node u = pq.top();
		pq.pop();
		if (a[u.u] != u.x.x || b[u.u] != u.x.y) {
			continue;
		}
		ans[u.u] = 1. * u.x.x / u.x.y;
		if (u.u == 1) {
			continue;
		}
		int x = find(p[u.u]);
		a[x] += u.x.x;
		b[x] += u.x.y;
		fa[u.u] = x;
		node v;
		v.u = x;
		v.x = frac(a[x], b[x]);
		pq.push(v);
	}
	for (int i = 1; i <= n; ++i) {
		printf("%.9lf\n", ans[i]);
	}
}

int main() {
	int T = 1;
	// scanf("%d", &T);
	while (T--) {
		solve();
	}
	return 0;
}

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

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:

468078856.400500000
887174926.000000000
881025216.709677458
912609654.666666627
872318573.500000000
831791515.153846145
867874850.000000000
892392319.166666627
836427216.000000000
869519853.799999952
693335785.375000000
925100890.000000000
994728511.500000000
950304719.000000000
808673189.250000000
...

result:

wrong answer 1st numbers differ - expected: '883838885.9230770', found: '468078856.4005000', error = '0.4704025'

Subtask #2:

score: 0
Wrong Answer

Test #32:

score: 0
Wrong Answer
time: 172ms
memory: 23008kb

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:

474888348.125339985
794937150.351351380
794843085.477611899
804131414.226415038
805846267.166666627
806376230.000000000
778037203.690476179
815562308.149999976
776087995.601265788
809328819.588235259
767722826.595375776
771619640.696969748
800107654.476923108
879639965.333333373
775670912.436974764
...

result:

wrong answer 1st numbers differ - expected: '792545632.4154930', found: '474888348.1253400', error = '0.4008063'

Subtask #3:

score: 0
Skipped

Dependency #1:

0%

Subtask #4:

score: 0
Skipped

Dependency #2:

0%