結果

問題 No.1344 Typical Shortest Path Sum
ユーザー ks2mks2m
提出日時 2021-01-16 13:23:57
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,845 bytes
コンパイル時間 3,954 ms
コンパイル使用メモリ 78,312 KB
実行使用メモリ 150,320 KB
最終ジャッジ日時 2024-11-27 13:48:24
合計ジャッジ時間 27,583 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
56,616 KB
testcase_01 AC 49 ms
108,076 KB
testcase_02 AC 49 ms
57,168 KB
testcase_03 AC 51 ms
150,320 KB
testcase_04 AC 53 ms
56,612 KB
testcase_05 AC 52 ms
107,112 KB
testcase_06 AC 52 ms
56,972 KB
testcase_07 AC 54 ms
107,120 KB
testcase_08 AC 52 ms
57,120 KB
testcase_09 AC 53 ms
50,020 KB
testcase_10 AC 54 ms
50,320 KB
testcase_11 AC 56 ms
50,060 KB
testcase_12 AC 52 ms
50,316 KB
testcase_13 AC 52 ms
50,112 KB
testcase_14 AC 54 ms
50,424 KB
testcase_15 AC 54 ms
50,040 KB
testcase_16 AC 57 ms
50,420 KB
testcase_17 AC 55 ms
50,052 KB
testcase_18 AC 53 ms
50,116 KB
testcase_19 AC 52 ms
49,852 KB
testcase_20 AC 51 ms
49,828 KB
testcase_21 AC 51 ms
50,048 KB
testcase_22 AC 52 ms
50,116 KB
testcase_23 AC 53 ms
50,028 KB
testcase_24 AC 53 ms
50,200 KB
testcase_25 AC 52 ms
50,136 KB
testcase_26 AC 52 ms
50,028 KB
testcase_27 AC 54 ms
50,060 KB
testcase_28 AC 54 ms
49,920 KB
testcase_29 AC 55 ms
50,092 KB
testcase_30 AC 51 ms
50,140 KB
testcase_31 AC 51 ms
49,996 KB
testcase_32 AC 50 ms
50,148 KB
testcase_33 AC 54 ms
50,164 KB
testcase_34 AC 51 ms
49,852 KB
testcase_35 AC 54 ms
50,120 KB
testcase_36 AC 50 ms
50,120 KB
testcase_37 AC 50 ms
50,024 KB
testcase_38 AC 51 ms
49,948 KB
testcase_39 AC 52 ms
50,080 KB
testcase_40 AC 59 ms
50,108 KB
testcase_41 AC 57 ms
49,856 KB
testcase_42 AC 56 ms
50,344 KB
testcase_43 AC 60 ms
50,132 KB
testcase_44 AC 57 ms
49,984 KB
testcase_45 AC 57 ms
50,176 KB
testcase_46 AC 56 ms
50,220 KB
testcase_47 AC 60 ms
49,816 KB
testcase_48 AC 63 ms
50,456 KB
testcase_49 AC 55 ms
49,872 KB
testcase_50 AC 56 ms
50,016 KB
testcase_51 AC 59 ms
50,040 KB
testcase_52 AC 56 ms
50,084 KB
testcase_53 AC 63 ms
49,988 KB
testcase_54 AC 58 ms
50,356 KB
testcase_55 AC 72 ms
50,588 KB
testcase_56 AC 62 ms
50,348 KB
testcase_57 AC 57 ms
50,008 KB
testcase_58 AC 57 ms
50,056 KB
testcase_59 AC 68 ms
50,276 KB
testcase_60 AC 119 ms
54,584 KB
testcase_61 AC 52 ms
50,056 KB
testcase_62 TLE -
testcase_63 AC 1,262 ms
64,924 KB
testcase_64 TLE -
testcase_65 TLE -
testcase_66 TLE -
testcase_67 TLE -
testcase_68 AC 409 ms
59,592 KB
testcase_69 AC 613 ms
65,656 KB
testcase_70 AC 51 ms
49,808 KB
testcase_71 AC 50 ms
50,224 KB
testcase_72 AC 50 ms
50,124 KB
testcase_73 AC 51 ms
50,056 KB
testcase_74 AC 51 ms
50,096 KB
testcase_75 AC 48 ms
49,988 KB
testcase_76 AC 52 ms
50,000 KB
testcase_77 AC 52 ms
49,992 KB
testcase_78 AC 50 ms
50,144 KB
testcase_79 AC 55 ms
107,260 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.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