参考代码:
import java.util.*; public class Main { public static void main(String[] args) { Scanner cin = new Scanner(System.in); int n = cin.nextInt(); int[] dist = new int[n]; List<int[]> edges = new ArrayList<>(); for(int i = 0; i < n; i++) { dist[i] = (int) 1e9; } dist[0] = 0; for(int i = 0; i < n; i++) { for(int j = 0; j < n; j++) { int z = cin.nextInt(); if(i != j && z != 0) edges.add(new int[]{i, j, z}); } } for(int i = 1; i <= n - 1; i++) { boolean flag = false; for(int[] edge : edges) { int x = edge[0]; int y = edge[1]; int z = edge[2]; if(dist[x] + z < dist[y]) { dist[y] = dist[x] + z; flag = true; } } if(!flag) break; } System.out.print(dist[n - 1]); } }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:1550 |
C语言程序设计教程(第三版)课后习题9.3 (Java代码)浏览:1025 |
【出圈】 (C语言代码)浏览:590 |
简单的a+b (C++语言代码)浏览:895 |
拆分位数 (C语言代码)浏览:1361 |
简单的a+b (C语言代码)浏览:564 |
C语言程序设计教程(第三版)课后习题6.6 (C语言代码)浏览:626 |
wu-理财计划 (C++代码)浏览:907 |
C语言程序设计教程(第三版)课后习题1.6 (C语言代码)浏览:689 |
母牛的故事 (C语言代码)浏览:739 |