Silver III๋ฌธ์ (์ถ์ฒ: https://www.acmicpc.net/problem/2012) ๋ฌธ์ ํ์ด ์ ๋ ฅ๋ฐ์ ์๋ฅผ ์ ๋ ฌ ํ ๋ฑ์๋ฅผ ํ๋์ฉ ๋๋ ค๊ฐ๋ฉด์ ์์ ๋ฑ์์ ์ฐจ์ด๋ฅผ ๊ตฌํด ๋ํ๋ฉด ๋๋ค. my solution (Java)import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.util.PriorityQueue;public class _2012_ { // ๋ฑ์ ๋งค๊ธฐ๊ธฐ public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStream..