結果

問題 No.1365 [Cherry 1st Tune] Whose Fault?
ユーザー chineristACchineristAC
提出日時 2021-01-22 23:05:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 426 ms / 2,000 ms
コード長 913 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 127,664 KB
最終ジャッジ日時 2024-06-09 07:04:30
合計ジャッジ時間 12,167 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,948 KB
testcase_01 AC 32 ms
52,820 KB
testcase_02 AC 31 ms
53,484 KB
testcase_03 AC 32 ms
53,796 KB
testcase_04 AC 32 ms
53,224 KB
testcase_05 AC 32 ms
53,296 KB
testcase_06 AC 33 ms
52,876 KB
testcase_07 AC 34 ms
53,140 KB
testcase_08 AC 32 ms
54,508 KB
testcase_09 AC 33 ms
52,656 KB
testcase_10 AC 33 ms
53,512 KB
testcase_11 AC 31 ms
53,016 KB
testcase_12 AC 32 ms
53,688 KB
testcase_13 AC 101 ms
79,920 KB
testcase_14 AC 96 ms
80,628 KB
testcase_15 AC 75 ms
77,992 KB
testcase_16 AC 49 ms
72,256 KB
testcase_17 AC 90 ms
78,524 KB
testcase_18 AC 80 ms
79,972 KB
testcase_19 AC 101 ms
81,112 KB
testcase_20 AC 94 ms
77,644 KB
testcase_21 AC 106 ms
79,360 KB
testcase_22 AC 95 ms
77,836 KB
testcase_23 AC 161 ms
96,760 KB
testcase_24 AC 245 ms
108,244 KB
testcase_25 AC 366 ms
114,892 KB
testcase_26 AC 286 ms
107,916 KB
testcase_27 AC 283 ms
96,052 KB
testcase_28 AC 171 ms
85,852 KB
testcase_29 AC 156 ms
89,836 KB
testcase_30 AC 426 ms
120,268 KB
testcase_31 AC 420 ms
127,340 KB
testcase_32 AC 294 ms
117,260 KB
testcase_33 AC 335 ms
106,952 KB
testcase_34 AC 278 ms
101,440 KB
testcase_35 AC 230 ms
107,364 KB
testcase_36 AC 394 ms
125,356 KB
testcase_37 AC 132 ms
87,720 KB
testcase_38 AC 169 ms
102,376 KB
testcase_39 AC 390 ms
115,188 KB
testcase_40 AC 398 ms
113,240 KB
testcase_41 AC 348 ms
116,532 KB
testcase_42 AC 283 ms
95,800 KB
testcase_43 AC 33 ms
52,868 KB
testcase_44 AC 197 ms
127,664 KB
testcase_45 AC 123 ms
87,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline

N = int(input())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
P = list(map(int,input().split()))

S = [A[i]-B[i] for i in range(N)]
for i in range(N):
    if P[i]:
        P[i] = 1/P[i]
    else:
        P[i] = float("inf")

ans = 0
for i in range(N):
    ans += S[i]**2 / P[i]

parent = [i for i in range(N)]
g = [set([i]) for i in range(N)]

def unite(x,y):
    global ans
    if parent[x]==parent[y]:
        return

    gx,gy = parent[x],parent[y]
    if len(g[gy]) > len(g[gx]):
        gx,gy = gy,gx

    ans -= S[gx]**2 / P[gx]
    ans -= S[gy]**2 / P[gy]

    S[gx] += S[gy]
    P[gx] += P[gy]

    ans += S[gx]**2 / P[gx]

    for v in g[gy]:
        parent[v] = gx
        g[gx].add(v)

    g[gy] = []


res = []
for _ in range(int(input())):
    x,y = map(int,input().split())
    unite(x-1,y-1)
    res.append(ans)

print(*res,sep="\n")
0