백준 숫자고르기

· Algorithm
- 알고리즘 분류 : DFS - 사용 언어 : JAVA 소스 설명은 주석을 참고해주세요. import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.*; public class Main { static int[] arr; static int N; static List answer = new ArrayList(); static boolean[] visited; static int target = 0; public static void main(String[] args) throws IOException { BufferedReader br = new BufferedRead..
멍목
'백준 숫자고르기' 태그의 글 목록