結果

問題 No.1365 [Cherry 1st Tune] Whose Fault?
ユーザー iaNTUiaNTU
提出日時 2021-01-22 04:39:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 335 ms / 2,000 ms
コード長 1,252 bytes
コンパイル時間 1,828 ms
コンパイル使用メモリ 201,508 KB
実行使用メモリ 12,488 KB
最終ジャッジ日時 2024-06-09 06:50:27
合計ジャッジ時間 20,737 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
11,976 KB
testcase_01 AC 3 ms
11,848 KB
testcase_02 AC 3 ms
10,056 KB
testcase_03 AC 2 ms
9,932 KB
testcase_04 AC 3 ms
9,924 KB
testcase_05 AC 2 ms
11,976 KB
testcase_06 AC 3 ms
11,972 KB
testcase_07 AC 3 ms
11,848 KB
testcase_08 AC 2 ms
9,936 KB
testcase_09 AC 3 ms
9,800 KB
testcase_10 AC 2 ms
11,852 KB
testcase_11 AC 2 ms
11,976 KB
testcase_12 AC 3 ms
11,976 KB
testcase_13 AC 29 ms
10,216 KB
testcase_14 AC 21 ms
9,836 KB
testcase_15 AC 7 ms
9,924 KB
testcase_16 AC 6 ms
9,972 KB
testcase_17 AC 18 ms
11,844 KB
testcase_18 AC 11 ms
9,832 KB
testcase_19 AC 30 ms
11,976 KB
testcase_20 AC 17 ms
9,936 KB
testcase_21 AC 26 ms
10,084 KB
testcase_22 AC 23 ms
9,820 KB
testcase_23 AC 63 ms
10,596 KB
testcase_24 AC 130 ms
10,944 KB
testcase_25 AC 264 ms
10,912 KB
testcase_26 AC 183 ms
10,860 KB
testcase_27 AC 220 ms
10,300 KB
testcase_28 AC 93 ms
10,224 KB
testcase_29 AC 76 ms
10,292 KB
testcase_30 AC 335 ms
10,988 KB
testcase_31 AC 287 ms
12,488 KB
testcase_32 AC 162 ms
11,144 KB
testcase_33 AC 270 ms
10,692 KB
testcase_34 AC 202 ms
12,108 KB
testcase_35 AC 118 ms
10,948 KB
testcase_36 AC 240 ms
11,160 KB
testcase_37 AC 57 ms
10,144 KB
testcase_38 AC 66 ms
10,964 KB
testcase_39 AC 308 ms
11,004 KB
testcase_40 AC 302 ms
10,688 KB
testcase_41 AC 227 ms
11,112 KB
testcase_42 AC 222 ms
10,288 KB
testcase_43 AC 3 ms
11,980 KB
testcase_44 AC 77 ms
11,600 KB
testcase_45 AC 99 ms
9,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
constexpr int kN = int(2E5 + 10);

int union_find[kN], a[kN], b[kN], p[kN], x[kN], y[kN];
long long int sum_a[kN], sum_b[kN];
double ans, sum_of_inverse_p[kN];

double Cal(int n) {
	double x = fabs(sum_a[n] - sum_b[n]);
	return x * x / sum_of_inverse_p[n];
}

int Find(int n) {return n == union_find[n] ? n : union_find[n] = Find(union_find[n]);}
void Merge(int l, int r) {
	l = Find(l), r = Find(r);
	if (l != r) {
		ans -= Cal(l);
		ans -= Cal(r);
		union_find[r] = l;
		sum_a[l] += sum_a[r];
		sum_b[l] += sum_b[r];
		sum_of_inverse_p[l] += sum_of_inverse_p[r];
		ans += Cal(l);
	}
	return ;
}

int main() {
	int n, q;
	scanf("%d", &n);
	for (int i = 1; i <= n; i++) scanf("%d", &a[i]);
	for (int i = 1; i <= n; i++) scanf("%d", &b[i]);
	for (int i = 1; i <= n; i++) scanf("%d", &p[i]);
	scanf("%d", &q);
	for (int i = 1; i <= q; i++) scanf("%d%d", &x[i], &y[i]);

	for (int i = 1; i <= n; i++) sum_a[i] = a[i];
	for (int i = 1; i <= n; i++) sum_b[i] = b[i];
	for (int i = 1; i <= n; i++) sum_of_inverse_p[i] = 1.0 / p[i];
	for (int i = 1; i <= n; i++) union_find[i] = i;
	for (int i = 1; i <= n; i++) ans += Cal(i);

	for (int i = 1; i <= q; i++) {
		Merge(x[i], y[i]);
		printf("%.20lf\n", ans);
	}
}
0