Algorithm/Baekjoon 51

[Algorithm/Baekjoon] 여러분의 다리가 되어 드리겠습니다! - 17352 (G5/JAVA)

📑문제링크https://www.acmicpc.net/problem/17352💻코드import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.util.StringTokenizer;public class Main { static int N; static int[] parent; public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); N = Integer.pars..

Algorithm/Baekjoon 2025.01.06