結果

問題 No.1898 Battle and Exchange
ユーザー 👑 hos.lyrichos.lyric
提出日時 2022-04-08 22:02:05
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 3,423 bytes
コンパイル時間 1,108 ms
コンパイル使用メモリ 126,900 KB
実行使用メモリ 17,064 KB
最終ジャッジ日時 2023-09-04 16:41:11
合計ジャッジ時間 26,169 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 3 ms
4,384 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 28 ms
4,376 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 5 ms
4,376 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 4 ms
4,380 KB
testcase_15 AC 2 ms
4,380 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 20 ms
4,380 KB
testcase_18 AC 85 ms
11,964 KB
testcase_19 AC 140 ms
12,840 KB
testcase_20 AC 156 ms
13,532 KB
testcase_21 AC 413 ms
15,056 KB
testcase_22 AC 1 ms
4,380 KB
testcase_23 AC 3 ms
4,376 KB
testcase_24 AC 3 ms
4,376 KB
testcase_25 AC 3 ms
4,376 KB
testcase_26 AC 2 ms
4,376 KB
testcase_27 AC 11 ms
4,376 KB
testcase_28 AC 14 ms
4,380 KB
testcase_29 AC 36 ms
4,384 KB
testcase_30 AC 5 ms
4,380 KB
testcase_31 AC 2 ms
4,376 KB
testcase_32 AC 100 ms
12,136 KB
testcase_33 AC 175 ms
13,744 KB
testcase_34 AC 83 ms
11,988 KB
testcase_35 AC 135 ms
14,408 KB
testcase_36 WA -
testcase_37 AC 38 ms
4,384 KB
testcase_38 AC 426 ms
17,064 KB
testcase_39 AC 311 ms
15,700 KB
testcase_40 AC 411 ms
16,312 KB
testcase_41 AC 320 ms
15,476 KB
testcase_42 AC 15 ms
4,380 KB
testcase_43 AC 272 ms
14,128 KB
testcase_44 AC 1 ms
4,376 KB
testcase_45 AC 28 ms
4,380 KB
testcase_46 AC 117 ms
12,880 KB
testcase_47 AC 21 ms
4,376 KB
testcase_48 AC 44 ms
4,380 KB
testcase_49 AC 10 ms
4,384 KB
testcase_50 AC 10 ms
4,376 KB
testcase_51 AC 10 ms
4,380 KB
testcase_52 AC 18 ms
4,376 KB
testcase_53 AC 76 ms
6,808 KB
testcase_54 AC 96 ms
8,092 KB
testcase_55 AC 89 ms
7,572 KB
testcase_56 AC 110 ms
8,672 KB
testcase_57 WA -
testcase_58 AC 499 ms
15,592 KB
testcase_59 AC 523 ms
15,748 KB
testcase_60 AC 489 ms
15,680 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)); }


enum INF = 10L^^18;
enum BIG = 10L^^9;

int N, M;
int[] A, B;
long[][] X;

int[][] G;

long need0, need1;
int[] us;

bool check(long[] start) {
  if (!(start.sum > need0)) {
    return false;
  }
  bool ok1 = false;
  foreach (k; 0 .. 3) {
    auto xs = start.dup;
    chmax(xs[k], X[0][k]);
    ok1 = ok1 || (xs.sum > need1);
  }
  if (!ok1) {
    return false;
  }
  
  auto xs = start.dup;
  foreach (u; us) {
    if (!(xs.sum > X[u].sum)) {
      return false;
    }
    foreach (k; 0 .. 3) {
      chmax(xs[k], X[u][k]);
    }
  }
  return true;
}

void main() {
  try {
    for (; ; ) {
      N = readInt;
      M = readInt;
      A = new int[M];
      B = new int[M];
      foreach (i; 0 .. M) {
        A[i] = readInt - 1;
        B[i] = readInt - 1;
      }
      X = new long[][](N, 3);
      foreach (u; 0 .. N) foreach (k; 0 .. 3) {
        X[u][k] = readLong;
      }
      
      G = new int[][N];
      foreach (i; 0 .. M) {
        G[A[i]] ~= i;
        G[B[i]] ~= i;
      }
      
      need0 = X[0].sum;
      need1 = INF;
      foreach (i; G[0]) {
        const v = A[i] ^ B[i] ^ 0;
        chmin(need1, X[v].sum);
      }
      
      alias Entry = Tuple!(long, "c", int, "u");
      BinaryHeap!(Array!Entry, "a.c > b.c") que;
      auto vis = new bool[N];
      vis[0] = true;
      que.insert(Entry(X[0].sum, 0));
      us = [];
      for (; !que.empty; ) {
        const u = que.front.u;
        que.removeFront;
        us ~= u;
        foreach (i; G[u]) {
          const v = A[i] ^ B[i] ^ u;
          if (!vis[v]) {
            vis[v] = true;
            que.insert(Entry(X[v].sum, v));
          }
        }
      }
      debug {
        writeln("need0 = ", need0);
        writeln("need1 = ", need1);
        writeln("us = ", us);
      }
      
      long mn = INF;
      long[] ans;
      foreach (k; 0 .. 3) {
        long[] start = [1, 1, 1];
        long lo = 0, hi = BIG;
        for (; lo + 1 < hi; ) {
          const mid = (lo + hi) / 2;
          start[k] = mid;
          (check(start) ? hi : lo) = mid;
        }
        if (chmin(mn, hi)) {
          start[k] = hi;
          ans = start.dup;
        }
      }
      
      writeln(ans[0], " ", ans[1], " ", ans[2]);
    }
  } catch (EOFException e) {
  }
}
0