algorithm

[HakerRank] Roads and Libraries

https://www.hackerrank.com/challenges/torque-and-development/problem 풀이 cost를 최소화하면서 모든 도시의 시민들이 도서관을 이용할 수 있게 하는 문제이다. 도서관이 있는 도시에 거주하거나 도서관이 있는 도시와 연결되어 있다면 해당 도시의 시민들이 도서관을 이용할 수 있다. cost의 정의는 아래와 같다. $c_lib=cost\ of\ libarary$ $c_road=cost\ of\ road$ 도서관과
Sungho Park