結果

問題 No.848 なかよし旅行
ユーザー 👑 hos.lyrichos.lyric
提出日時 2021-05-21 21:13:38
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 2,950 bytes
コンパイル時間 878 ms
コンパイル使用メモリ 124,548 KB
実行使用メモリ 15,404 KB
最終ジャッジ日時 2023-09-04 12:40:53
合計ジャッジ時間 4,118 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 303 ms
15,404 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 2 ms
4,384 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 3 ms
4,380 KB
testcase_09 AC 4 ms
4,376 KB
testcase_10 AC 4 ms
4,376 KB
testcase_11 AC 50 ms
4,384 KB
testcase_12 AC 66 ms
4,556 KB
testcase_13 AC 87 ms
4,900 KB
testcase_14 AC 31 ms
4,380 KB
testcase_15 AC 82 ms
5,248 KB
testcase_16 AC 145 ms
12,816 KB
testcase_17 AC 94 ms
7,148 KB
testcase_18 AC 50 ms
4,380 KB
testcase_19 AC 42 ms
4,376 KB
testcase_20 AC 18 ms
4,376 KB
testcase_21 AC 114 ms
6,312 KB
testcase_22 AC 122 ms
12,784 KB
testcase_23 AC 54 ms
4,376 KB
testcase_24 AC 1 ms
4,380 KB
testcase_25 AC 180 ms
13,976 KB
testcase_26 AC 2 ms
4,376 KB
testcase_27 AC 2 ms
4,384 KB
testcase_28 AC 1 ms
4,384 KB
testcase_29 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.functional, std.range, std.stdio, std.string;
import std.algorithm, std.array, std.bigint, std.complex, std.container, std.math, 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;

int N, M, P, Q;
long T;
int[] A, B;
long[] C;

void main() {
  try {
    for (; ; ) {
      N = readInt();
      M = readInt();
      P = readInt() - 1;
      Q = readInt() - 1;
      T = readLong();
      A = new int[M];
      B = new int[M];
      C = new long[M];
      foreach (i; 0 .. M) {
        A[i] = readInt() - 1;
        B[i] = readInt() - 1;
        C[i] = readLong();
      }
      
      auto graph = new int[][N];
      foreach (i; 0 .. M) {
        graph[A[i]] ~= i;
        graph[B[i]] ~= i;
      }
      
      const srcs = [0, P, Q];
      auto dist = new long[][](3, N);
      foreach (h; 0 .. 3) {
        alias Node = Tuple!(long, "c", int, "u");
        BinaryHeap!(Array!Node, "a > b") q;
        dist[h][] = INF;
        dist[h][srcs[h]] = 0;
        q.insert(Node(0, srcs[h]));
        for (; !q.empty; ) {
          const c = q.front.c;
          const u = q.front.u;
          q.removeFront;
          if (dist[h][u] == c) {
            foreach (i; graph[u]) {
              const cc = c + C[i];
              const v = A[i] ^ B[i] ^ u;
              if (dist[h][v] > cc) {
                dist[h][v] = cc;
                q.insert(Node(cc, v));
              }
            }
          }
        }
      }
      debug {
        foreach (h; 0 .. 3) {
          writeln(dist[h]);
        }
      }
      
      long ans = -1;
      if (dist[0][P] + dist[1][Q] + dist[2][0] <= T) {
        chmax(ans, T);
      }
      foreach (u; 0 .. N) foreach (v; 0 .. N) {
        if (dist[0][u] + dist[1][u] + dist[1][v] + dist[0][v] <= T &&
            dist[0][u] + dist[2][u] + dist[2][v] + dist[0][v] <= T) {
          chmax(ans, T - max(dist[1][u] + dist[1][v], dist[2][u] + dist[2][v]));
        }
      }
      writeln(ans);
    }
  } catch (EOFException e) {
  }
}
0