結果

問題 No.872 All Tree Path
ユーザー 小野寺健小野寺健
提出日時 2021-11-12 11:04:41
言語 Ruby
(3.3.0)
結果
MLE  
実行時間 -
コード長 379 bytes
コンパイル時間 39 ms
コンパイル使用メモリ 7,808 KB
実行使用メモリ 1,397,952 KB
最終ジャッジ日時 2024-05-03 17:05:25
合計ジャッジ時間 9,638 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
dist = Array.new(N) {Array.new(N, Float::INFINITY)}

(N-1).times {
	u, v, d = gets.split(" ").map{|s| s.to_i}
	dist[u-1][v-1] = dist[v-1][u-1] = d
}

0.upto(N-1) {|k|
	dist[k][k] = 0
	0.upto(N-1) {|i|
		0.upto(N-1) {|j|
			dist[i][j] = [dist[i][j], dist[i][k] + dist[k][j]].min
		}
	}
}

cnt = 0
0.upto(N-1) {|i|
	0.upto(N-1) {|j|
		cnt += dist[i][j]
	}
}

puts cnt
0