結果

問題 No.1365 [Cherry 1st Tune] Whose Fault?
ユーザー 👑 hos.lyrichos.lyric
提出日時 2021-01-22 22:37:55
言語 D
(dmd 2.106.1)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 3,066 bytes
コンパイル時間 2,356 ms
コンパイル使用メモリ 164,224 KB
実行使用メモリ 24,076 KB
最終ジャッジ日時 2024-06-22 10:44:27
合計ジャッジ時間 20,200 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 22 ms
6,940 KB
testcase_14 AC 17 ms
6,944 KB
testcase_15 AC 6 ms
5,376 KB
testcase_16 AC 5 ms
6,940 KB
testcase_17 AC 13 ms
6,940 KB
testcase_18 AC 10 ms
6,940 KB
testcase_19 AC 22 ms
6,940 KB
testcase_20 AC 24 ms
6,940 KB
testcase_21 AC 19 ms
6,940 KB
testcase_22 AC 17 ms
6,944 KB
testcase_23 AC 53 ms
13,068 KB
testcase_24 AC 102 ms
12,504 KB
testcase_25 AC 202 ms
14,336 KB
testcase_26 AC 140 ms
15,488 KB
testcase_27 AC 166 ms
7,756 KB
testcase_28 AC 87 ms
5,504 KB
testcase_29 AC 57 ms
6,784 KB
testcase_30 AC 258 ms
22,784 KB
testcase_31 AC 234 ms
23,808 KB
testcase_32 AC 131 ms
21,992 KB
testcase_33 AC 205 ms
14,080 KB
testcase_34 AC 157 ms
10,752 KB
testcase_35 AC 93 ms
12,800 KB
testcase_36 AC 191 ms
23,284 KB
testcase_37 AC 41 ms
6,272 KB
testcase_38 AC 61 ms
12,928 KB
testcase_39 AC 227 ms
13,440 KB
testcase_40 AC 238 ms
13,184 KB
testcase_41 AC 180 ms
22,144 KB
testcase_42 AC 181 ms
7,424 KB
testcase_43 AC 1 ms
5,376 KB
testcase_44 AC 1,162 ms
24,076 KB
testcase_45 TLE -
権限があれば一括ダウンロードができます

ソースコード

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 real[N];
      foreach (u; 0 .. N) {
        A[u] = readReal();
      }
      auto B = new real[N];
      foreach (u; 0 .. N) {
        B[u] = readReal();
      }
      auto P = new real[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 real[N];
      auto ts = new real[N];
      auto zs = new real[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]);
      }
      
      real 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