Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 다익스트라
- dp
- 세그먼트트리
- DFS
- PS
- QUICKSTARTGUIDE
- 우선순위큐
- 재귀함수
- 이젠 골드구현도 어렵네..
- deque
- COSPROJAVA1급
- 자바PS
- GatherTown
- 01BFS
- 네트워크플로우
- 구현
- 완전탐색
- 게더타운시작
- YBMCOS
- 백준코딩테스트
- 백준
- java
- 취득후기
- 다이나믹프로그래밍
- BFS
- 시뮬레이션
- 엘라스틱서치
- 알고리즘
- COSPRO
- spring
Archives
- Today
- Total
공부공간
BOJ - 6603 ) 로또 JAVA 본문
https://www.acmicpc.net/problem/6603
숫자를 배열에 담아
6개의 숫자를 DFS로 탐색하면서 방문처리를 통하여 경우의 수를 구한다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
import java.util.ArrayList;
public class Main {
static int num[];
static int size =6;
static boolean visit[];
static ArrayList<Integer> al = new ArrayList<>();
public static void DFS(int start_index) {
for(int index = 0 ; index < size; index++) {
}
System.out.println();
return;
}
for(; start_index <num.length;start_index++) {
if(!visit[start_index]) {
visit[start_index] = true;
al.add(num[start_index]);
DFS(start_index+1);
visit[start_index] = false;
}
}
}
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner(System.in);
int len = sc.nextInt();
while(len !=0 && len >0) {
num = new int[len];
visit = new boolean[len];
for(int index = 0 ; index < len ; index++) {
num[index] = sc.nextInt();
}
DFS(0);
System.out.println();
len = sc.nextInt();
}
}
}
|
'알고리즘 > 완전탐색(BFS,DFS)' 카테고리의 다른 글
BOJ - 16637 ) 괄호추가하기 (0) | 2020.02.02 |
---|---|
BOJ - 2644 ) 촌수계산 (0) | 2020.01.28 |
BOJ - 7569 ) 토마토 (0) | 2020.01.22 |
BOJ - 1002 ) 적록색약 JAVA (0) | 2020.01.20 |
BOJ -1697 ) 숨바꼭질 (0) | 2020.01.19 |
Comments