結果

問題 No.1365 [Cherry 1st Tune] Whose Fault?
ユーザー 👑 NachiaNachia
提出日時 2021-02-06 16:42:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 619 ms / 2,000 ms
コード長 788 bytes
コンパイル時間 2,125 ms
コンパイル使用メモリ 203,760 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-03 03:01:04
合計ジャッジ時間 22,840 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 55 ms
5,376 KB
testcase_14 AC 39 ms
5,376 KB
testcase_15 AC 10 ms
5,376 KB
testcase_16 AC 8 ms
5,376 KB
testcase_17 AC 32 ms
5,376 KB
testcase_18 AC 19 ms
5,376 KB
testcase_19 AC 54 ms
5,376 KB
testcase_20 AC 46 ms
5,376 KB
testcase_21 AC 50 ms
5,376 KB
testcase_22 AC 41 ms
5,376 KB
testcase_23 AC 116 ms
5,376 KB
testcase_24 AC 247 ms
5,376 KB
testcase_25 AC 499 ms
5,376 KB
testcase_26 AC 344 ms
5,376 KB
testcase_27 AC 421 ms
5,376 KB
testcase_28 AC 193 ms
5,376 KB
testcase_29 AC 145 ms
5,376 KB
testcase_30 AC 619 ms
5,376 KB
testcase_31 AC 563 ms
5,376 KB
testcase_32 AC 308 ms
5,376 KB
testcase_33 AC 499 ms
5,376 KB
testcase_34 AC 392 ms
5,376 KB
testcase_35 AC 222 ms
5,376 KB
testcase_36 AC 468 ms
5,376 KB
testcase_37 AC 96 ms
5,376 KB
testcase_38 AC 125 ms
5,376 KB
testcase_39 AC 606 ms
5,376 KB
testcase_40 AC 596 ms
5,376 KB
testcase_41 AC 430 ms
5,376 KB
testcase_42 AC 433 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 270 ms
5,376 KB
testcase_45 AC 399 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i=0; i<(n); i++)

struct dsu{
	vector<int> V;
	dsu(int n){ V.assign(n,-1); }
	int root(int a){ return (V[a]<0)?a:(V[a]=root(V[a])); }
	int unite(int a,int b){ a=root(a); b=root(b); return (a==b)?-1:(V[b]=a); }
};

int N;
long long A[100000];
double P[100000];
int Q;
double ans=0.0;

int main() {
	cin>>N;
	dsu G(N);
	rep(i,N) cin>>A[i];
	rep(i,N){ int b; cin>>b; A[i]-=b; }
	rep(i,N){ int p; cin>>p; P[i]=1.0/p; }
	rep(i,N) ans += A[i]*A[i]/P[i];
	cin>>Q;
	rep(q,Q){
		int u,v,g; cin>>u>>v; u--; v--;
		u=G.root(u); v=G.root(v);
		if(u!=v){
			g=G.unite(u,v);
			ans -= A[u]*A[u]/P[u];
			ans -= A[v]*A[v]/P[v];
			A[g]+=A[u+v-g]; P[g]+=P[u+v-g];
			ans += A[g]*A[g]/P[g];
		}
		printf("%.9f\n",ans);
	}
	return 0;
}
0