結果

問題 No.1365 [Cherry 1st Tune] Whose Fault?
ユーザー vkgainzvkgainz
提出日時 2021-06-12 13:49:34
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 763 ms / 2,000 ms
コード長 1,652 bytes
コンパイル時間 5,115 ms
コンパイル使用メモリ 160,564 KB
実行使用メモリ 54,180 KB
最終ジャッジ日時 2024-05-09 17:05:58
合計ジャッジ時間 31,825 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 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 3 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 64 ms
7,552 KB
testcase_14 AC 44 ms
8,576 KB
testcase_15 AC 13 ms
6,272 KB
testcase_16 AC 9 ms
8,704 KB
testcase_17 AC 40 ms
6,528 KB
testcase_18 AC 25 ms
7,936 KB
testcase_19 AC 62 ms
7,936 KB
testcase_20 AC 57 ms
5,376 KB
testcase_21 AC 61 ms
7,040 KB
testcase_22 AC 47 ms
6,272 KB
testcase_23 AC 148 ms
27,648 KB
testcase_24 AC 322 ms
35,200 KB
testcase_25 AC 602 ms
36,608 KB
testcase_26 AC 422 ms
33,280 KB
testcase_27 AC 515 ms
18,688 KB
testcase_28 AC 231 ms
10,368 KB
testcase_29 AC 173 ms
17,664 KB
testcase_30 AC 763 ms
40,576 KB
testcase_31 AC 664 ms
48,384 KB
testcase_32 AC 404 ms
42,880 KB
testcase_33 AC 606 ms
27,136 KB
testcase_34 AC 453 ms
24,576 KB
testcase_35 AC 273 ms
35,968 KB
testcase_36 AC 553 ms
46,848 KB
testcase_37 AC 122 ms
15,488 KB
testcase_38 AC 166 ms
38,400 KB
testcase_39 AC 682 ms
35,456 KB
testcase_40 AC 689 ms
34,560 KB
testcase_41 AC 510 ms
40,960 KB
testcase_42 AC 517 ms
17,024 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 322 ms
54,180 KB
testcase_45 AC 420 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int par[100001], sz[100001];
int freq[100001][11][11];
long long X[100001];
double val[100001];
double ans;

int find(int x) {
    if(x == par[x]) return x;
    return par[x] = find(par[x]);
}

void merge(int x, int y) {
    if(find(x) == find(y)) return;
    x = find(x), y = find(y);
    if(sz[x] < sz[y]) swap(x, y);
    X[x] += X[y];
    par[y] = x;
    sz[x] += sz[y];
    ans -= val[x];
    ans -= val[y];
    double num = X[x], den = 0.0;
    bool zer = false;
    for(int i = 0; i <= 10; i++) {
        for(int j = 0; j <= 10; j++) {
            freq[x][i][j] += freq[y][i][j];
            num -= freq[x][i][j] * j;
            if(i)
                den += freq[x][i][j] * 1.0 / i;
            if(i == 0 && freq[x][i][j] >= 1) zer = true;
        }
    }
    if(den)  {
        if(zer) val[x] = 0.0;
        else {
            ans += num * 1.0 * num / den;
            val[x] = num * 1.0 * num / den;
        }
    }
    else val[x] = 0.0;
}

int main() {
    int N; cin >> N;
    vector<int> A(N), B(N), P(N);
    for(int i = 0; i < N; i++) {
        cin >> A[i];
    }
    for(int i = 0; i < N; i++) {
        cin >> B[i];
    }
    for(int i = 0; i < N; i++) {
        cin >> P[i];
    }
    iota(par, par + N, 0);
    memset(sz, 1, sizeof(sz));
    for(int i = 0; i < N; i++) {
        X[i] = A[i];
        val[i] = P[i] * (A[i] - B[i]) * (A[i] - B[i]);
        freq[i][P[i]][B[i]] = 1;
        ans += val[i];
    }
    cout << setprecision(24);
    int Q; cin >> Q;
    while(Q--) {
        int X, Y; cin >> X >> Y;
        --X, --Y;
        merge(X, Y);
        cout << ans << "\n";
    }
}
0