結果

問題 No.848 なかよし旅行
ユーザー daut-dlangdaut-dlang
提出日時 2019-07-05 22:57:07
言語 D
(dmd 2.106.1)
結果
TLE  
実行時間 -
コード長 2,413 bytes
コンパイル時間 649 ms
コンパイル使用メモリ 99,960 KB
実行使用メモリ 66,724 KB
最終ジャッジ日時 2023-09-04 01:52:49
合計ジャッジ時間 7,453 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
/dmd2/linux/bin64/../../src/phobos/std/numeric.d(2999): Warning: cannot inline function `std.numeric.gcdImpl!ulong.gcdImpl`

ソースコード

diff #

import std.stdio, std.conv, std.functional, std.string;
import std.algorithm, std.array, std.container, std.range, std.typecons;
import std.numeric, std.math, std.random;
import core.bitop;

string FMT_F = "%.10f";

static string[] s_rd;
T RD(T = long)() { while(!s_rd.length) s_rd = readln.chomp.split; string res = s_rd[0]; s_rd.popFront; return res.to!T; }
string RDR()() { return readln.chomp; }
T[] ARR(T = long)(in string str, T fix = 0) { auto r = str.split.to!(T[]); r[] += fix; return r; }
size_t[] MAKE_IDX(alias less = "a < b", Range)(Range range) { auto idx = new size_t[](range.length); makeIndex!(less)(range, idx); return idx;}
size_t MIN_POS(alias less = "a < b", Range)(Range range) { auto r = minPos!(less)(range); return range.length - r.length; }

bool inside(T)(T x, T b, T e) { return x >= b && x < e; }
long lcm(long x, long y) { return x * y / gcd(x, y); }

long mod = 10^^9 + 7;
//long mod = 998244353;
//long mod = 1_000_003;
void moda(ref long x, long y) { x = (x + y) % mod; }
void mods(ref long x, long y) { x = ((x + mod) - (y % mod)) % mod; }
void modm(ref long x, long y) { x = (x * y) % mod; }

void main()
{
	auto N = RD;
	auto M = RD;
	auto P = RD-1;
	auto Q = RD-1;
	auto T = RD;
	auto edges = new long[2][][](N);
	foreach (i; 0..M)
	{
		auto a = RD-1;
		auto b = RD-1;
		auto c = RD;
		edges[a] ~= [b, c];
		edges[b] ~= [a, c];
	}

	long[] search(long pos)
	{
		long[2][] open = [[pos, 0]];
		auto cost = new long[](N);
		cost.fill(long.max);
		cost[pos] = 0;
		while (!open.empty)
		{
			auto n    = open.front; open.popFront;
			auto from = n[0];
			auto c    = n[1];
			foreach (e; edges[from])
			{
				auto to = e[0];
				auto d  = e[1];
				if (c+d < cost[to])
				{
					cost[to] = c+d;
					open    ~= [to, c+d];
				}
			}
		}
		return cost;
	}

	auto cost1 = search(0);
	auto cost2 = search(P);
	auto cost3 = search(Q);
	long ans = -1;
	foreach (i; 0..N)
	{
		auto cost_pq = max(cost2[i], cost3[i]);
		if ((cost1[i] + cost_pq)*2 <= T)
		{
			if ((cost1[i] + cost2[i] + cost3[i])*2 <= T)
			{
				ans = T;
				break;
			}
			else
			{
				long best = long.max;
				long pos;
				foreach (j; 0..N)
				{
					auto c2 = cost2[i] + cost2[j];
					auto c3 = cost3[i] + cost3[j];
					auto c  = max(c2, c3);
					if (c < best)
					{
						best = c;
						pos  = j;
					}
				}
				ans = max(ans, T - best);
			}
		}
	}

	writeln(ans);
	stdout.flush();
	debug readln();
}
0