結果

問題 No.1365 [Cherry 1st Tune] Whose Fault?
ユーザー 👑 hos.lyrichos.lyric
提出日時 2021-01-22 22:43:03
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 302 ms / 2,000 ms
コード長 3,080 bytes
コンパイル時間 3,240 ms
コンパイル使用メモリ 159,860 KB
実行使用メモリ 22,636 KB
最終ジャッジ日時 2023-09-04 12:01:15
合計ジャッジ時間 17,048 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 24 ms
4,836 KB
testcase_14 AC 18 ms
5,360 KB
testcase_15 AC 6 ms
4,380 KB
testcase_16 AC 6 ms
4,380 KB
testcase_17 AC 16 ms
4,636 KB
testcase_18 AC 10 ms
4,876 KB
testcase_19 AC 24 ms
4,820 KB
testcase_20 AC 27 ms
4,592 KB
testcase_21 AC 22 ms
4,832 KB
testcase_22 AC 19 ms
4,624 KB
testcase_23 AC 55 ms
7,976 KB
testcase_24 AC 108 ms
11,060 KB
testcase_25 AC 206 ms
12,676 KB
testcase_26 AC 147 ms
12,436 KB
testcase_27 AC 176 ms
14,920 KB
testcase_28 AC 92 ms
13,144 KB
testcase_29 AC 63 ms
9,980 KB
testcase_30 AC 261 ms
14,028 KB
testcase_31 AC 226 ms
14,256 KB
testcase_32 AC 132 ms
13,720 KB
testcase_33 AC 215 ms
21,536 KB
testcase_34 AC 161 ms
8,056 KB
testcase_35 AC 102 ms
16,924 KB
testcase_36 AC 191 ms
14,584 KB
testcase_37 AC 45 ms
7,788 KB
testcase_38 AC 61 ms
10,820 KB
testcase_39 AC 239 ms
11,612 KB
testcase_40 AC 246 ms
22,636 KB
testcase_41 AC 182 ms
13,296 KB
testcase_42 AC 187 ms
14,908 KB
testcase_43 AC 1 ms
4,380 KB
testcase_44 AC 194 ms
13,588 KB
testcase_45 AC 302 ms
6,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.functional, std.range, std.stdio, std.string;
import std.algorithm, std.array, std.bigint, std.bitmanip, std.complex, std.container, std.math, std.mathspecial, std.numeric, std.regex, std.typecons;
import core.bitop;

class EOFException : Throwable { this() { super("EOF"); } }
string[] tokens;
string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; }
int readInt() { return readToken.to!int; }
long readLong() { return readToken.to!long; }
real readReal() { return readToken.to!real; }

bool chmin(T)(ref T t, in T f) { if (t > f) { t = f; return true; } else { return false; } }
bool chmax(T)(ref T t, in T f) { if (t < f) { t = f; return true; } else { return false; } }

int binarySearch(alias pred, T)(in T[] as) { int lo = -1, hi = cast(int)(as.length); for (; lo + 1 < hi; ) { const mid = (lo + hi) >> 1; (unaryFun!pred(as[mid]) ? hi : lo) = mid; } return hi; }
int lowerBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a >= val)); }
int upperBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a > val)); }


int root(int[] uf, int u) {
  return (uf[u] < 0) ? u : (uf[u] = uf.root(uf[u]));
}
bool connect(int[] uf, int u, int v) {
  u = uf.root(u);
  v = uf.root(v);
  if (u == v) return false;
  if (uf[u] > uf[v]) swap(u, v);
  uf[u] += uf[v];
  uf[v] = u;
  return true;
}


/*
  minimize  \sum_i P[i] x[i]^2
  subject to  \sum_i x[i] = S
  
  if P[i] != 0:
    T := \sum_i 1/P[i]
    l = S / T
    x[i] = l / P[i]
    min = l^2 \sum_i 1/P[i] = l^2 T = S^2 / T
*/
void main() {
  try {
    for (; ; ) {
      const N = readInt();
      auto A = new double[N];
      foreach (u; 0 .. N) {
        A[u] = readReal();
      }
      auto B = new double[N];
      foreach (u; 0 .. N) {
        B[u] = readReal();
      }
      auto P = new double[N];
      foreach (u; 0 .. N) {
        P[u] = readReal();
      }
      const Q = readInt();
      auto X = new int[Q];
      auto Y = new int[Q];
      foreach (q; 0 .. Q) {
        X[q] = readInt() - 1;
        Y[q] = readInt() - 1;
      }
      
      auto hs = new bool[N];
      auto ss = new double[N];
      auto ts = new double[N];
      auto zs = new double[N];
      foreach (u; 0 .. N) {
        hs[u] = (P[u] == 0.0L);
        ss[u] = A[u] - B[u];
        ts[u] = (P[u] == 0.0L) ? 0.0L : (1.0L / P[u]);
        zs[u] = hs[u] ? 0.0L : (ss[u] * ss[u] / ts[u]);
      }
      
      double ans = zs.sum;
      auto uf = new int[N];
      uf[] = -1;
      foreach (q; 0 .. Q) {
        const ru = uf.root(X[q]);
        const rv = uf.root(Y[q]);
        if (ru != rv) {
          ans -= zs[ru];
          ans -= zs[rv];
          uf.connect(ru, rv);
          const r = uf.root(ru);
          hs[r] = hs[ru] || hs[rv];
          ss[r] = ss[ru] + ss[rv];
          ts[r] = ts[ru] + ts[rv];
          zs[r] = hs[r] ? 0.0L : (ss[r] * ss[r] / ts[r]);
          ans += zs[r];
        }
        writefln("%.10f", ans);
      }
    }
  } catch (EOFException e) {
  }
}
0