250x250
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
- 완탐
- 파티션 크기 조정
- 삼성역테
- 재귀함수
- 전화번호속의암호
- 중복조합
- 완전탐색
- 순열
- 백준2251
- 중복순열
- 자바 코테
- 백준13458
- 자바
- BFS
- 알고리즘
- 코테
- 주사위굴리기2
- 백준
- 볼륨 만들기
- Bfs와DFS
- N과M
- D드라이브생성
- 알고리즘개념
- 코테준비
- 에라토스테네스의채
- 정올 1620
- 정보처리기사
- java
- 백준15652
- 23288
Archives
- Today
- Total
뚱땅뚱땅
[문제] 백준 6603번 로또 본문
728x90
* 출처: www.acmicpc.net/problem/6603
내 생각
기본적인 조합 문제
public class Main {
static StringBuilder sb;
static int k;
static int m = 6;
static int[] numbers;
public static void main(String[] args) throws IOException {
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st;
String s = "";
while(!(s=in.readLine()).equals("0")) {
st = new StringTokenizer(s, " ");
k = Integer.parseInt(st.nextToken()); // k개
numbers = new int[k]; // 숫자 집합
//init number
for(int i=0;i<k;i++) {
numbers[i] = Integer.parseInt(st.nextToken());
}
// 조합
sb = new StringBuilder("");
combination(0,new int[m],0);
System.out.println(sb);
}
}
// 조합
static void combination(int toSelect, int[] selected, int startIdx) {
if(toSelect == m) {
for(int i=0;i<m;i++) {
sb.append(selected[i]).append(' ');
}
sb.append('\n');
return;
}
for(int i=startIdx;i<k;i++) {
selected[toSelect] = numbers[i];
combination(toSelect+1, selected, i+1);
}
}
}
728x90
'알고리즘 > 백준' 카테고리의 다른 글
[문제] 백준 10819번 차이를 최대로 (0) | 2021.02.05 |
---|---|
[문제] 백준 2493번 탑 (0) | 2021.02.04 |
[문제] 백준 1992번 쿼드트리 (0) | 2021.02.04 |
[문제] 백준 15664번 N과 M(10) (0) | 2021.02.04 |
[문제] 백준 2231번 분해합 (0) | 2021.02.03 |
Comments