結果

問題 No.1365 [Cherry 1st Tune] Whose Fault?
ユーザー 👑 NachiaNachia
提出日時 2021-02-06 17:39:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 254 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 2,424 ms
コンパイル使用メモリ 200,220 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-03 05:00:39
合計ジャッジ時間 18,196 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 24 ms
5,376 KB
testcase_14 AC 18 ms
5,376 KB
testcase_15 AC 6 ms
5,376 KB
testcase_16 AC 6 ms
5,376 KB
testcase_17 AC 14 ms
5,376 KB
testcase_18 AC 10 ms
5,376 KB
testcase_19 AC 23 ms
5,376 KB
testcase_20 AC 14 ms
5,376 KB
testcase_21 AC 22 ms
5,376 KB
testcase_22 AC 17 ms
5,376 KB
testcase_23 AC 53 ms
5,376 KB
testcase_24 AC 110 ms
5,376 KB
testcase_25 AC 208 ms
5,376 KB
testcase_26 AC 143 ms
5,376 KB
testcase_27 AC 163 ms
5,376 KB
testcase_28 AC 68 ms
5,376 KB
testcase_29 AC 60 ms
5,376 KB
testcase_30 AC 254 ms
5,376 KB
testcase_31 AC 228 ms
5,376 KB
testcase_32 AC 141 ms
5,376 KB
testcase_33 AC 200 ms
5,376 KB
testcase_34 AC 154 ms
5,376 KB
testcase_35 AC 97 ms
5,376 KB
testcase_36 AC 193 ms
5,376 KB
testcase_37 AC 42 ms
5,376 KB
testcase_38 AC 60 ms
5,376 KB
testcase_39 AC 243 ms
5,376 KB
testcase_40 AC 244 ms
5,376 KB
testcase_41 AC 186 ms
5,376 KB
testcase_42 AC 159 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 75 ms
5,376 KB
testcase_45 AC 87 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define S(a)scanf("%d",&a);
#define R for(int i=0;i<(N);i++)
#define f(i)A[i]*A[i]/P[i]
int N,A[1<<17],V[1<<17],u,v;double P[1<<17],E=0;int Z(int a){return V[a]+1?V[a]=Z(V[a]):a;}int main(){S(N)R S(A[i])R{S(u)A[i]-=u;V[i]=-1;}R{S(u)P[i]=1./u;E+=f(i);}S(N)R{S(u)S(v)u=Z(u-1);v=Z(v-1);if(u^v){V[v]=u;E-=f(u)+f(v);A[u]+=A[v];P[u]+=P[v];E+=f(u);}printf("%f\n",E);}return 0;}
0