結果
| 問題 |
No.1898 Battle and Exchange
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-04-08 22:11:50 |
| 言語 | D (dmd 2.109.1) |
| 結果 |
AC
|
| 実行時間 | 311 ms / 5,000 ms |
| コード長 | 3,321 bytes |
| コンパイル時間 | 937 ms |
| コンパイル使用メモリ | 145,000 KB |
| 実行使用メモリ | 16,648 KB |
| 最終ジャッジ日時 | 2024-06-22 14:51:59 |
| 合計ジャッジ時間 | 15,513 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 58 |
ソースコード
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) {
long[] xs;
void upd(long val) {
foreach (k; 0 .. 3) {
if (xs[k] < val) {
swap(xs[k], val);
}
}
}
xs = start.dup;
if (!(xs.sum > need0)) {
return false;
}
upd(X[0][0]);
if (!(xs.sum > need1)) {
return false;
}
xs = start.dup;
foreach (u; us) {
if (!(xs.sum > X[u].sum)) {
return false;
}
foreach (k; 0 .. 3) {
upd(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;
}
X[u].sort;
X[u].reverse;
}
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 lo = 0, hi = BIG;
long[] start = [1, 1, 1];
for (; lo + 1 < hi; ) {
const mid = (lo + hi) / 2;
start[0] = mid;
(check(start) ? hi : lo) = mid;
}
writeln(hi, " ", 1, " ", 1);
}
} catch (EOFException e) {
}
}