import java.util.HashMap;
import java.util.Map;
public class NuclearRod {
/**
* @param n the number of rods
* @param edges An array of Strings, pairs, like "12 23" meaning 12 and 23 is connected.
* @return the cost
*/
public static int countComponents(int n, String[] edges) {
Map<Integer, Integer> roots = new HashMap<>();
for (int i = 0; i < n; i++) {
roots.put(i, i);
}
int connectedNumber = n;
for (int i = 0; i < edges.length; i++) {
String[] pair = edges[i].split(" ");
int root1 = find(roots, Integer.valueOf(pair[0]));
int root2 = find(roots, Integer.valueOf(pair[1]));
if (root1 != root2) {
//union root2 into root1
roots.put(root2, root1);
connectedNumber--;
}
}
//calculate the number of rods in each fused part
int[] connected = new int[n];
for (Integer id : roots.keySet()) {
int root = find(roots, id);
connected[root]++;
}
//calculate the cost
int cost = 0;
for (int i = 0; i < connected.length; i++) {
cost += (int)Math.ceil(Math.sqrt((double)connected[i]));
}
return cost;
}
public static int find(Map<Integer, Integer> roots, int id) {
while (roots.get(id) != id) {
//change father to grandfather
roots.put(id, roots.get(roots.get(id)));
id = roots.get(id);
}
return id;
}
public static void main(String[] args) {
// 0 3
// | |
// 1 --- 2 4
String[] rods = new String[] {"0 1", "1 2", "3 4"};
int cost = countComponents(5, rods);
System.out.println(cost); //4
}
}
Nulear Rods
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
- 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來茧球,“玉大人庭瑰,你說我怎么就攤上這事∏缆瘢” “怎么了弹灭?”我有些...
- 文/不壞的土叔 我叫張陵,是天一觀的道長揪垄。 經(jīng)常有香客問我穷吮,道長,這世上最難降的妖魔是什么饥努? 我笑而不...
- 正文 為了忘掉前任捡鱼,我火速辦了婚禮,結(jié)果婚禮上酷愧,老公的妹妹穿的比我還像新娘驾诈。我一直安慰自己,他們只是感情好溶浴,可當(dāng)我...
- 文/花漫 我一把揭開白布乍迄。 她就那樣靜靜地躺著,像睡著了一般士败。 火紅的嫁衣襯著肌膚如雪闯两。 梳的紋絲不亂的頭發(fā)上,一...
- 文/蒼蘭香墨 我猛地睜開眼志衣,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了猛们?” 一聲冷哼從身側(cè)響起念脯,我...
- 正文 年R本政府宣布,位于F島的核電站删窒,受9級特大地震影響裂垦,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜肌索,卻給世界環(huán)境...
- 文/蒙蒙 一蕉拢、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧驶社,春花似錦企量、人聲如沸。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽硅瞧。三九已至份乒,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間腕唧,已是汗流浹背或辖。 一陣腳步聲響...
推薦閱讀更多精彩內(nèi)容
- 經(jīng)常給家長講耳高,孩子的小學(xué)時期是養(yǎng)成的教育扎瓶,是習(xí)慣培養(yǎng)的最佳時期;初中的孩子泌枪,學(xué)習(xí)心態(tài)決定一切栗弟,不管小學(xué)時期成績?nèi)绾?..
- 寫給自己的15條女人箴言 一、永遠(yuǎn)不要人云亦云工闺。 少年時不說“奮斗不奮斗都一樣乍赫,我又沒有個好爸爸”;中年時不說“干...
- 文章首發(fā):Android程序員日記作者:賢榆的魚測試閱讀時間:4min 30s 前言 我先把昨天那篇“仿掘金框架之...