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
- 주사위굴리기2
- 정보처리기사
- 자바 코테
- 알고리즘
- 정올 1620
- 백준13458
- 코테준비
- D드라이브생성
- 백준15652
- 삼성역테
- N과M
- 자바
- 순열
- 중복조합
- 재귀함수
- 백준
- 전화번호속의암호
- java
- 23288
- 볼륨 만들기
- 중복순열
- Bfs와DFS
- 완전탐색
- 백준2251
- 파티션 크기 조정
- BFS
- 코테
- 완탐
- 에라토스테네스의채
- 알고리즘개념
Archives
- Today
- Total
뚱땅뚱땅
[문제] 백준 15664번 N과 M(10) 본문
728x90
* 출처 www.acmicpc.net/problem/15664
N과 M 시리즈 중 다른 점은 중복되는 숫자가 있어, 수열에서 중복되는 조합은 제거해야 한다는 것이다.
내 생각
1. 첫번째 풀이
comb함수 내에서 중복된 조합을 제거하기 위해 방금 만든 조합은 StringBuilder를 하나 더 만들어 이에 저장하였다.
그리고 기존의 StringBuilder를 toString()을 사용해 String으로 변환 후 contains 를 통해 앞선 문장과 비교해봤다.
당연히 답은 나오지만, 백준에 제출을 하니 시간 초과가 떴다.
2. 두번째 풀이
중복된 것을 제외해야 하니 Set<String>에 넣었다.
public class Main {
static int N;
static int M;
static int[] arr;
static Set<String> ansSet;
static StringBuilder sb = new StringBuilder();
public static void main(String[] args) throws IOException {
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(in.readLine(), " ");
N = Integer.parseInt(st.nextToken());
M = Integer.parseInt(st.nextToken());
arr = new int[N];
st = new StringTokenizer(in.readLine()," ");
for(int i=0;i<N;i++) {
arr[i] = Integer.parseInt(st.nextToken());
}
Arrays.sort(arr);
ansSet = new HashSet<String>();
comb(0,new int[M],0);
System.out.print(sb);
}
static void comb(int toSelect, int[] selected, int startIdx) {
if(toSelect == M) {
String tmp = "";
for(int i=0;i<M;i++) {
tmp += (selected[i]+" ");
}
if(!ansSet.contains(tmp)) {
ansSet.add(tmp);
sb.append(tmp);
sb.append('\n');
}
return;
}
for(int i=startIdx;i<N;i++) {
selected[toSelect] = arr[i];
comb(toSelect+1, selected, i+1);
}
}
}
728x90
'알고리즘 > 백준' 카테고리의 다른 글
[문제] 백준 6603번 로또 (0) | 2021.02.04 |
---|---|
[문제] 백준 1992번 쿼드트리 (0) | 2021.02.04 |
[문제] 백준 2231번 분해합 (0) | 2021.02.03 |
[문제] 백준 2798번 블랙잭 (0) | 2021.02.02 |
[문제] 백준 1244번 스위치 켜고 끄기 (0) | 2021.02.01 |
Comments