結果

問題 No.1344 Typical Shortest Path Sum
ユーザー ks2mks2m
提出日時 2021-01-16 13:23:57
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,845 bytes
コンパイル時間 4,661 ms
コンパイル使用メモリ 78,220 KB
実行使用メモリ 64,372 KB
最終ジャッジ日時 2024-05-05 15:23:06
合計ジャッジ時間 11,834 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
57,356 KB
testcase_01 AC 55 ms
50,344 KB
testcase_02 AC 54 ms
50,496 KB
testcase_03 AC 56 ms
50,048 KB
testcase_04 AC 55 ms
50,448 KB
testcase_05 AC 54 ms
50,380 KB
testcase_06 AC 55 ms
50,556 KB
testcase_07 AC 54 ms
50,496 KB
testcase_08 AC 54 ms
50,480 KB
testcase_09 AC 55 ms
50,148 KB
testcase_10 AC 53 ms
50,464 KB
testcase_11 AC 54 ms
50,248 KB
testcase_12 AC 54 ms
50,540 KB
testcase_13 AC 54 ms
50,296 KB
testcase_14 AC 56 ms
50,484 KB
testcase_15 AC 54 ms
50,296 KB
testcase_16 AC 58 ms
50,500 KB
testcase_17 AC 54 ms
50,216 KB
testcase_18 AC 55 ms
49,964 KB
testcase_19 AC 55 ms
50,360 KB
testcase_20 AC 54 ms
50,496 KB
testcase_21 AC 54 ms
50,420 KB
testcase_22 AC 53 ms
50,204 KB
testcase_23 AC 55 ms
50,608 KB
testcase_24 AC 54 ms
50,324 KB
testcase_25 AC 53 ms
50,284 KB
testcase_26 AC 55 ms
50,332 KB
testcase_27 AC 53 ms
50,268 KB
testcase_28 AC 55 ms
50,144 KB
testcase_29 AC 54 ms
50,548 KB
testcase_30 AC 54 ms
50,364 KB
testcase_31 AC 54 ms
50,200 KB
testcase_32 AC 54 ms
50,460 KB
testcase_33 AC 54 ms
50,468 KB
testcase_34 AC 54 ms
50,292 KB
testcase_35 AC 54 ms
50,468 KB
testcase_36 AC 54 ms
50,348 KB
testcase_37 AC 54 ms
50,004 KB
testcase_38 AC 54 ms
50,444 KB
testcase_39 AC 55 ms
50,312 KB
testcase_40 AC 63 ms
50,372 KB
testcase_41 AC 64 ms
50,584 KB
testcase_42 AC 62 ms
50,464 KB
testcase_43 AC 59 ms
50,404 KB
testcase_44 AC 61 ms
50,536 KB
testcase_45 AC 66 ms
50,704 KB
testcase_46 AC 61 ms
50,516 KB
testcase_47 AC 62 ms
50,200 KB
testcase_48 AC 65 ms
50,592 KB
testcase_49 AC 61 ms
50,520 KB
testcase_50 AC 60 ms
50,532 KB
testcase_51 AC 62 ms
50,112 KB
testcase_52 AC 60 ms
50,584 KB
testcase_53 AC 79 ms
50,872 KB
testcase_54 AC 60 ms
50,592 KB
testcase_55 AC 63 ms
50,580 KB
testcase_56 AC 65 ms
50,312 KB
testcase_57 AC 63 ms
50,128 KB
testcase_58 AC 64 ms
50,312 KB
testcase_59 AC 63 ms
50,624 KB
testcase_60 AC 123 ms
54,844 KB
testcase_61 AC 55 ms
50,084 KB
testcase_62 TLE -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
testcase_75 -- -
testcase_76 -- -
testcase_77 -- -
testcase_78 -- -
testcase_79 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.PriorityQueue;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int m = Integer.parseInt(sa[1]);
		List<List<Hen>> list = new ArrayList<>(n);
		for (int i = 0; i < n; i++) {
			list.add(new ArrayList<>());
		}
		for (int i = 0; i < m; i++) {
			sa = br.readLine().split(" ");
			int a = Integer.parseInt(sa[0]) - 1;
			int b = Integer.parseInt(sa[1]) - 1;
			long c = Long.parseLong(sa[2]);
			list.get(a).add(new Hen(b, c));
		}
		br.close();

		for (int i = 0; i < n; i++) {
			long[] d = dijkstra(list, i);
			long ans = 0;
			for (int j = 0; j < n; j++) {
				if (d[j] != Long.MAX_VALUE) {
					ans += d[j];
				}
			}
			System.out.println(ans);
		}
	}

	static long[] dijkstra(List<List<Hen>> list, int s) {
		long[] d = new long[list.size()];
		Arrays.fill(d, Long.MAX_VALUE);
		d[s] = 0;
		PriorityQueue<Node> que = new PriorityQueue<Node>();
		Node first = new Node(s, 0);
		que.add(first);

		while (!que.isEmpty()) {
			Node cur = que.poll();
			if (cur.d > d[cur.v]) {
				continue;
			}
			for (Hen hen : list.get(cur.v)) {
				long alt = d[cur.v] + hen.c;
				if (alt < d[hen.v]) {
					d[hen.v] = alt;
					que.add(new Node(hen.v, alt));
				}
			}
		}
		return d;
	}

	static class Hen {
		int v;
		long c;

		public Hen(int v, long c) {
			this.v = v;
			this.c = c;
		}
	}

	static class Node implements Comparable<Node> {
		int v;
		long d;

		public Node(int v, long d) {
			this.v = v;
			this.d = d;
		}

		public int compareTo(Node o) {
			return Long.compare(d, o.d);
		}
	}
}
0