-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Silver II] Title: 로또, Time: 112 ms, Memory: 14132 KB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
93 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# [Silver II] 로또 - 6603 | ||
|
||
[문제 링크](https://www.acmicpc.net/problem/6603) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 14132 KB, 시간: 112 ms | ||
|
||
### 분류 | ||
|
||
백트래킹, 조합론, 수학, 재귀 | ||
|
||
### 제출 일자 | ||
|
||
2024년 11월 14일 14:03:33 | ||
|
||
### 문제 설명 | ||
|
||
<p>독일 로또는 {1, 2, ..., 49}에서 수 6개를 고른다.</p> | ||
|
||
<p>로또 번호를 선택하는데 사용되는 가장 유명한 전략은 49가지 수 중 k(k>6)개의 수를 골라 집합 S를 만든 다음 그 수만 가지고 번호를 선택하는 것이다.</p> | ||
|
||
<p>예를 들어, k=8, S={1,2,3,5,8,13,21,34}인 경우 이 집합 S에서 수를 고를 수 있는 경우의 수는 총 28가지이다. ([1,2,3,5,8,13], [1,2,3,5,8,21], [1,2,3,5,8,34], [1,2,3,5,13,21], ..., [3,5,8,13,21,34])</p> | ||
|
||
<p>집합 S와 k가 주어졌을 때, 수를 고르는 모든 방법을 구하는 프로그램을 작성하시오.</p> | ||
|
||
### 입력 | ||
|
||
<p>입력은 여러 개의 테스트 케이스로 이루어져 있다. 각 테스트 케이스는 한 줄로 이루어져 있다. 첫 번째 수는 k (6 < k < 13)이고, 다음 k개 수는 집합 S에 포함되는 수이다. S의 원소는 오름차순으로 주어진다.</p> | ||
|
||
<p>입력의 마지막 줄에는 0이 하나 주어진다. </p> | ||
|
||
### 출력 | ||
|
||
<p>각 테스트 케이스마다 수를 고르는 모든 방법을 출력한다. 이때, 사전 순으로 출력한다.</p> | ||
|
||
<p>각 테스트 케이스 사이에는 빈 줄을 하나 출력한다.</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
import java.util.*; | ||
import java.io.*; | ||
|
||
public class Main { | ||
static StringBuilder sb = new StringBuilder(); | ||
static int result[]; | ||
static boolean visited[]; | ||
static int arr[]; | ||
static int input; | ||
public static void main(String[] args) throws IOException { | ||
|
||
BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); | ||
|
||
StringTokenizer st; | ||
|
||
while(true){ | ||
st = new StringTokenizer(br.readLine()); | ||
input = Integer.parseInt(st.nextToken()); | ||
|
||
if(input == 0) | ||
break; | ||
|
||
arr = new int[input]; | ||
visited= new boolean[input]; | ||
result = new int[6]; | ||
for(int i =0; i<input; i++) { | ||
arr[i] = Integer.parseInt(st.nextToken()); | ||
} | ||
dfs(0,0); | ||
sb.append("\n"); | ||
} | ||
System.out.println(sb); | ||
} | ||
|
||
static void dfs(int cur, int depth) { | ||
if(depth ==6) { | ||
for(int val : result) { | ||
sb.append(val).append(" "); | ||
} | ||
sb.append("\n"); | ||
return; | ||
} | ||
|
||
for(int i = cur; i<input; i++) { | ||
if(visited[i]==false) { | ||
visited[i] = true; | ||
result[depth]= arr[i]; | ||
dfs(i, depth+1); | ||
visited[i]= false; | ||
} | ||
} | ||
|
||
} | ||
|
||
} |