結果

問題 No.1365 [Cherry 1st Tune] Whose Fault?
ユーザー 👑 NachiaNachia
提出日時 2021-01-22 23:04:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 942 bytes
コンパイル時間 2,426 ms
コンパイル使用メモリ 205,672 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-09 07:04:15
合計ジャッジ時間 14,958 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 2 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 26 ms
5,376 KB
testcase_14 AC 18 ms
5,376 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 15 ms
5,376 KB
testcase_18 AC 10 ms
5,376 KB
testcase_19 AC 25 ms
5,376 KB
testcase_20 AC 16 ms
5,376 KB
testcase_21 AC 23 ms
5,376 KB
testcase_22 AC 18 ms
5,376 KB
testcase_23 AC 57 ms
5,376 KB
testcase_24 AC 122 ms
5,376 KB
testcase_25 AC 232 ms
5,376 KB
testcase_26 AC 162 ms
5,376 KB
testcase_27 AC 187 ms
5,376 KB
testcase_28 AC 76 ms
5,376 KB
testcase_29 AC 68 ms
5,376 KB
testcase_30 AC 283 ms
5,376 KB
testcase_31 AC 255 ms
5,376 KB
testcase_32 AC 146 ms
5,376 KB
testcase_33 AC 225 ms
5,376 KB
testcase_34 AC 174 ms
5,376 KB
testcase_35 AC 105 ms
5,376 KB
testcase_36 AC 207 ms
5,376 KB
testcase_37 AC 47 ms
5,376 KB
testcase_38 AC 62 ms
5,376 KB
testcase_39 AC 267 ms
5,376 KB
testcase_40 AC 261 ms
5,376 KB
testcase_41 AC 203 ms
5,376 KB
testcase_42 AC 183 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 78 ms
5,376 KB
testcase_45 AC 90 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using LL = long long;
using ULL = unsigned long long;
#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;
LL A[100000];
double P[100000];
int Q;
double ans=0.0;

int main() {
  scanf("%d",&N);
  dsu G(N);
  rep(i,N){ int a; scanf("%d",&a); A[i]=a; }
  rep(i,N){ int b; scanf("%d",&b); A[i]-=b; }
  rep(i,N){ int p; scanf("%d",&p); P[i]=1.0/p; }
  rep(i,N) ans += A[i]*A[i]/P[i];
  scanf("%d",&Q);
  rep(q,Q){
    int u,v; scanf("%d%d",&u,&v); u--; v--;
    u=G.root(u); v=G.root(v);
    if(u!=v){
      int 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("%.10f\n",ans);
  }
  return 0;
}
0