結果

問題 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  
実行時間 757 ms / 2,000 ms
コード長 1,652 bytes
コンパイル時間 4,883 ms
コンパイル使用メモリ 161,704 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-12-16 07:51:00
合計ジャッジ時間 27,148 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 64 ms
7,424 KB
testcase_14 AC 47 ms
8,448 KB
testcase_15 AC 13 ms
6,272 KB
testcase_16 AC 11 ms
8,704 KB
testcase_17 AC 42 ms
6,656 KB
testcase_18 AC 23 ms
7,808 KB
testcase_19 AC 65 ms
7,936 KB
testcase_20 AC 55 ms
5,248 KB
testcase_21 AC 59 ms
7,040 KB
testcase_22 AC 50 ms
6,144 KB
testcase_23 AC 152 ms
27,648 KB
testcase_24 AC 313 ms
35,200 KB
testcase_25 AC 617 ms
36,736 KB
testcase_26 AC 427 ms
33,152 KB
testcase_27 AC 501 ms
18,688 KB
testcase_28 AC 231 ms
10,368 KB
testcase_29 AC 178 ms
17,536 KB
testcase_30 AC 757 ms
40,576 KB
testcase_31 AC 689 ms
48,512 KB
testcase_32 AC 387 ms
42,624 KB
testcase_33 AC 612 ms
27,008 KB
testcase_34 AC 474 ms
24,576 KB
testcase_35 AC 284 ms
36,096 KB
testcase_36 AC 562 ms
46,976 KB
testcase_37 AC 122 ms
15,360 KB
testcase_38 AC 166 ms
38,528 KB
testcase_39 AC 711 ms
35,456 KB
testcase_40 AC 681 ms
34,816 KB
testcase_41 AC 544 ms
40,960 KB
testcase_42 AC 495 ms
17,024 KB
testcase_43 AC 2 ms
5,248 KB
testcase_44 AC 347 ms
54,272 KB
testcase_45 AC 405 ms
5,248 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