結果

問題 No.1344 Typical Shortest Path Sum
ユーザー ks2mks2m
提出日時 2021-01-16 14:08:05
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,073 bytes
コンパイル時間 3,201 ms
コンパイル使用メモリ 79,900 KB
実行使用メモリ 89,684 KB
最終ジャッジ日時 2024-11-27 15:08:27
合計ジャッジ時間 27,850 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
42,300 KB
testcase_01 AC 45 ms
86,992 KB
testcase_02 AC 45 ms
42,080 KB
testcase_03 AC 45 ms
89,684 KB
testcase_04 AC 45 ms
42,276 KB
testcase_05 AC 43 ms
86,872 KB
testcase_06 AC 44 ms
41,768 KB
testcase_07 AC 46 ms
86,740 KB
testcase_08 AC 47 ms
42,032 KB
testcase_09 AC 52 ms
36,532 KB
testcase_10 AC 48 ms
37,224 KB
testcase_11 AC 46 ms
36,856 KB
testcase_12 AC 45 ms
36,936 KB
testcase_13 AC 45 ms
36,992 KB
testcase_14 AC 46 ms
36,484 KB
testcase_15 AC 44 ms
36,652 KB
testcase_16 AC 49 ms
36,484 KB
testcase_17 AC 46 ms
36,724 KB
testcase_18 AC 45 ms
37,020 KB
testcase_19 AC 46 ms
36,704 KB
testcase_20 AC 44 ms
36,916 KB
testcase_21 AC 44 ms
36,728 KB
testcase_22 AC 44 ms
36,956 KB
testcase_23 AC 44 ms
37,120 KB
testcase_24 AC 43 ms
37,064 KB
testcase_25 AC 44 ms
36,384 KB
testcase_26 AC 44 ms
36,812 KB
testcase_27 AC 44 ms
36,784 KB
testcase_28 AC 46 ms
37,092 KB
testcase_29 AC 46 ms
37,160 KB
testcase_30 AC 45 ms
37,008 KB
testcase_31 AC 43 ms
36,440 KB
testcase_32 AC 43 ms
36,792 KB
testcase_33 AC 43 ms
36,812 KB
testcase_34 AC 46 ms
37,160 KB
testcase_35 AC 44 ms
36,524 KB
testcase_36 AC 44 ms
37,004 KB
testcase_37 AC 44 ms
36,992 KB
testcase_38 AC 44 ms
37,148 KB
testcase_39 AC 43 ms
37,056 KB
testcase_40 AC 50 ms
37,076 KB
testcase_41 AC 52 ms
37,032 KB
testcase_42 AC 51 ms
36,984 KB
testcase_43 AC 51 ms
37,172 KB
testcase_44 AC 53 ms
36,760 KB
testcase_45 AC 55 ms
37,036 KB
testcase_46 AC 51 ms
37,320 KB
testcase_47 AC 51 ms
37,076 KB
testcase_48 AC 60 ms
37,660 KB
testcase_49 AC 51 ms
37,192 KB
testcase_50 AC 51 ms
37,288 KB
testcase_51 AC 50 ms
37,080 KB
testcase_52 AC 51 ms
37,092 KB
testcase_53 AC 80 ms
38,752 KB
testcase_54 AC 51 ms
36,780 KB
testcase_55 AC 52 ms
37,256 KB
testcase_56 AC 57 ms
37,352 KB
testcase_57 AC 55 ms
37,088 KB
testcase_58 AC 67 ms
37,640 KB
testcase_59 AC 55 ms
37,608 KB
testcase_60 AC 177 ms
45,340 KB
testcase_61 AC 50 ms
36,532 KB
testcase_62 TLE -
testcase_63 AC 1,741 ms
52,384 KB
testcase_64 TLE -
testcase_65 TLE -
testcase_66 TLE -
testcase_67 TLE -
testcase_68 AC 1,005 ms
52,292 KB
testcase_69 AC 1,243 ms
52,412 KB
testcase_70 AC 50 ms
36,852 KB
testcase_71 AC 46 ms
36,792 KB
testcase_72 AC 45 ms
36,832 KB
testcase_73 AC 47 ms
36,644 KB
testcase_74 AC 46 ms
37,036 KB
testcase_75 AC 47 ms
37,076 KB
testcase_76 AC 47 ms
36,616 KB
testcase_77 AC 48 ms
36,940 KB
testcase_78 AC 46 ms
36,952 KB
testcase_79 AC 49 ms
86,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.TreeMap;
import java.util.TreeSet;

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;
		TreeMap<Integer, Node> map = new TreeMap<>();
		TreeSet<Node> que = new TreeSet<Node>();
		Node first = new Node(s, 0);
		que.add(first);
		map.put(s, first);

		while (!que.isEmpty()) {
			Node cur = que.pollFirst();
			map.remove(cur.v);
			for (Hen hen : list.get(cur.v)) {
				long alt = d[cur.v] + hen.c;
				if (alt < d[hen.v]) {
					d[hen.v] = alt;
					Node next = new Node(hen.v, alt);
					if (map.containsKey(hen.v)) {
						que.remove(map.get(hen.v));
					}
					que.add(next);
					map.put(hen.v, next);
				}
			}
		}
		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) {
			if (d != o.d) {
				return Long.compare(d, o.d);
			}
			return v - o.v;
		}
	}
}
0