結果

問題 No.1898 Battle and Exchange
ユーザー 👑 hos.lyrichos.lyric
提出日時 2022-04-08 22:02:05
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 3,423 bytes
コンパイル時間 908 ms
コンパイル使用メモリ 140,316 KB
実行使用メモリ 17,256 KB
最終ジャッジ日時 2024-06-22 14:50:57
合計ジャッジ時間 16,850 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 23 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 5 ms
6,944 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 4 ms
6,940 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 17 ms
6,944 KB
testcase_18 AC 70 ms
10,688 KB
testcase_19 AC 118 ms
12,040 KB
testcase_20 AC 133 ms
13,292 KB
testcase_21 AC 340 ms
14,792 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 3 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 9 ms
6,940 KB
testcase_28 AC 11 ms
6,948 KB
testcase_29 AC 29 ms
6,940 KB
testcase_30 AC 4 ms
6,944 KB
testcase_31 AC 1 ms
6,944 KB
testcase_32 AC 88 ms
12,804 KB
testcase_33 AC 153 ms
13,536 KB
testcase_34 AC 71 ms
10,940 KB
testcase_35 AC 115 ms
12,688 KB
testcase_36 WA -
testcase_37 AC 32 ms
6,944 KB
testcase_38 AC 338 ms
16,720 KB
testcase_39 AC 258 ms
15,860 KB
testcase_40 AC 348 ms
15,948 KB
testcase_41 AC 262 ms
15,012 KB
testcase_42 AC 14 ms
6,940 KB
testcase_43 AC 227 ms
13,924 KB
testcase_44 AC 1 ms
6,940 KB
testcase_45 AC 23 ms
6,944 KB
testcase_46 AC 98 ms
12,932 KB
testcase_47 AC 17 ms
6,940 KB
testcase_48 AC 35 ms
6,944 KB
testcase_49 AC 8 ms
6,944 KB
testcase_50 AC 7 ms
6,944 KB
testcase_51 AC 9 ms
6,944 KB
testcase_52 AC 14 ms
6,940 KB
testcase_53 AC 63 ms
6,944 KB
testcase_54 AC 80 ms
7,316 KB
testcase_55 AC 73 ms
7,328 KB
testcase_56 AC 90 ms
7,252 KB
testcase_57 WA -
testcase_58 AC 396 ms
15,432 KB
testcase_59 AC 427 ms
15,380 KB
testcase_60 AC 398 ms
15,332 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