結果

問題 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
コンパイル時間 6,549 ms
コンパイル使用メモリ 159,664 KB
実行使用メモリ 25,064 KB
最終ジャッジ日時 2023-09-04 12:00:44
合計ジャッジ時間 27,716 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,384 KB
testcase_01 AC 2 ms
4,384 KB
testcase_02 AC 1 ms
4,384 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,380 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,384 KB
testcase_09 AC 2 ms
4,384 KB
testcase_10 AC 1 ms
4,384 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,384 KB
testcase_13 AC 27 ms
5,240 KB
testcase_14 AC 20 ms
5,176 KB
testcase_15 AC 6 ms
5,000 KB
testcase_16 AC 6 ms
5,060 KB
testcase_17 AC 17 ms
5,000 KB
testcase_18 AC 11 ms
5,188 KB
testcase_19 AC 26 ms
5,172 KB
testcase_20 AC 29 ms
4,712 KB
testcase_21 AC 24 ms
4,920 KB
testcase_22 AC 21 ms
5,004 KB
testcase_23 AC 63 ms
10,552 KB
testcase_24 AC 123 ms
13,228 KB
testcase_25 AC 233 ms
14,868 KB
testcase_26 AC 162 ms
12,964 KB
testcase_27 AC 199 ms
16,176 KB
testcase_28 AC 105 ms
13,648 KB
testcase_29 AC 71 ms
10,452 KB
testcase_30 AC 288 ms
15,132 KB
testcase_31 AC 260 ms
25,064 KB
testcase_32 AC 154 ms
18,472 KB
testcase_33 AC 228 ms
11,388 KB
testcase_34 AC 187 ms
22,136 KB
testcase_35 AC 112 ms
13,284 KB
testcase_36 AC 221 ms
24,572 KB
testcase_37 AC 50 ms
7,628 KB
testcase_38 AC 70 ms
13,524 KB
testcase_39 AC 269 ms
14,116 KB
testcase_40 AC 266 ms
13,960 KB
testcase_41 AC 205 ms
14,096 KB
testcase_42 AC 216 ms
15,492 KB
testcase_43 AC 2 ms
4,384 KB
testcase_44 AC 1,220 ms
23,652 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