Notice
Recent Posts
Recent Comments
Link
목록카드 정렬하기 (1)
뮁이의 개발새발
[JAVA] 백준 1715번 카드 정렬하기 (우선순위 큐)
골드 4라서 완전 쫄아있었는데 엥? 10분만에 풀어버렸다.. 골드 아닌듯.. 우선순위 큐 문제라는걸 알면 될 것 같다.. import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.PriorityQueue; public class bj1715 { public static void main(String[] args) throws NumberFormatException, IOException { BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); int N = Integer.parseInt(i..
Algorithm
2021. 9. 20. 02:24