結果

問題 No.1601 With Animals into Institute
ユーザー laneguelanegue
提出日時 2021-07-14 12:36:41
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 1,335 ms / 3,000 ms
コード長 1,330 bytes
コンパイル時間 1,957 ms
コンパイル使用メモリ 163,424 KB
実行使用メモリ 60,272 KB
最終ジャッジ日時 2024-06-22 11:43:49
合計ジャッジ時間 19,361 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,812 KB
testcase_03 AC 22 ms
6,940 KB
testcase_04 AC 24 ms
6,940 KB
testcase_05 AC 23 ms
6,940 KB
testcase_06 AC 1,259 ms
59,764 KB
testcase_07 AC 1,307 ms
59,756 KB
testcase_08 AC 1,335 ms
58,596 KB
testcase_09 AC 1,303 ms
59,040 KB
testcase_10 AC 1,273 ms
59,188 KB
testcase_11 AC 1,268 ms
60,080 KB
testcase_12 AC 1,250 ms
59,552 KB
testcase_13 AC 1,255 ms
59,932 KB
testcase_14 AC 1,261 ms
58,980 KB
testcase_15 AC 1,272 ms
59,460 KB
testcase_16 AC 1,276 ms
60,272 KB
testcase_17 AC 1,260 ms
59,036 KB
testcase_18 AC 21 ms
6,944 KB
testcase_19 AC 23 ms
6,944 KB
testcase_20 AC 23 ms
6,940 KB
testcase_21 AC 23 ms
6,944 KB
testcase_22 AC 22 ms
6,944 KB
testcase_23 AC 24 ms
6,940 KB
testcase_24 AC 24 ms
6,944 KB
testcase_25 AC 23 ms
6,940 KB
testcase_26 AC 22 ms
6,940 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 1 ms
6,944 KB
testcase_29 AC 1 ms
6,944 KB
testcase_30 AC 1 ms
6,944 KB
testcase_31 AC 1 ms
6,940 KB
testcase_32 AC 1 ms
6,944 KB
testcase_33 AC 1 ms
6,944 KB
testcase_34 AC 1 ms
6,944 KB
testcase_35 AC 1 ms
6,940 KB
testcase_36 AC 1 ms
6,944 KB
testcase_37 AC 1 ms
6,940 KB
testcase_38 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio;
import std.array;
import std.conv;
import std.container;
import std.math;

struct Edge{
	int to;
	long weight;
	bool animal;
}

void main(){
	auto l = readln.split.to!(int[]);
	auto n = l[0];
	auto m = l[1];
	auto e = new Edge[][n];
	for(auto i = 0; i < m; i++){
		l = readln.split.to!(int[]);
		auto a = l[0] - 1;
		auto b = l[1] - 1;
		auto c = l[2];
		auto x = (l[3] == 1);
		auto edge = Edge(b, c, x);
		e[a] ~= edge;
		edge = Edge(a, c, x);
		e[b] ~= edge;
	}
	auto distance = new long[n];
	distance[] = long.max;
	auto pq = new BinaryHeap!(Array!Edge, (a, b) => (a.weight > b.weight));
	auto edge = Edge(n - 1, 0, false);
	pq.insert(edge);
	while(!pq.empty){
		edge = pq.front;
		pq.removeFront;
		if(edge.animal){
			if(edge.weight < distance[edge.to]){
				distance[edge.to] = edge.weight;
			}else{
				continue;
			}
		}else{
			if(edge.weight < distance[edge.to] - 10L ^^ 15){
				distance[edge.to] = edge.weight + 10L ^^ 15;
			}else{
				continue;
			}
		}
		foreach(c; e[edge.to]){
			auto d = Edge(c.to, edge.weight + c.weight, edge.animal || c.animal);
			pq.insert(d);
			if(!edge.animal && c.animal){
				d = Edge(c.to, edge.weight + c.weight * 2, edge.animal || c.animal);
				pq.insert(d);
			}
		}
	}
	stderr.writeln(distance);
	for(auto i = 0; i < n - 1; i++){
		distance[i].writeln;
	}
}

0