백준 6603번: 로또 [재귀][백트래킹][조합] -Java :: 매운코딩
728x90
300x250

https://www.acmicpc.net/problem/6603

 

6603번: 로또

입력은 여러 개의 테스트 케이스로 이루어져 있다. 각 테스트 케이스는 한 줄로 이루어져 있다. 첫 번째 수는 k (6 < k < 13)이고, 다음 k개 수는 집합 S에 포함되는 수이다. S의 원소는 오름차순으로

www.acmicpc.net

 

 

로또 되고 싶따 🤨

 

 

 

visit[] 으로 체크해도 되지만 그냥 카운트를 주지 않으면 뽑지 않은 것으로 간주했다.

import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;

public class Main {

	public static int K;
	public static int arr[];
	public static int ans[] = new int[6];
	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());
			K = Integer.parseInt(st.nextToken());
			
			//입력 종료
			if(K==0)
				break;
			arr = new int[K];
			
			for (int i = 0; i < K; i++) {
				arr[i] = Integer.parseInt(st.nextToken());
			}
			
			fun(0,0);
			
			System.out.println();
		}
	}
	
	public static void fun(int idx, int cnt) {

		if(cnt == 6) {
			//출력
			StringBuilder sb = new StringBuilder();
			for (int i = 0; i < 6; i++) {
				sb.append(ans[i]+" ");
			}
			System.out.println(sb);
			return;
		}
		if(idx >= K) return;
		
		ans[cnt] = arr[idx];
		fun(idx+1,cnt+1);
		fun(idx+1,cnt);
	}

}

 

728x90

'알고리즘 > 조합 & 순열' 카테고리의 다른 글

SWEA - 8338. 계산기  (0) 2020.05.15
SWEA - 5215. 햄버거 다이어트  (0) 2020.05.15
백준 14889번: 스타트와 링크  (0) 2020.03.21
백준 14888번: 연산자 끼워넣기  (0) 2020.03.10
백준 15655번: N과 M (6)  (0) 2020.03.04

+ Recent posts