시간 & 메모리 제한
문제
입력 & 출력
이중 for문을 이용한 문제풀이
package com.Back;
import java.util.Arrays;
import java.util.Scanner;
public class Back_3040 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int [] Person = new int[9];
int fake1=0,fake2=0;
int sum = 0;
for(int i = 0 ; i < Person.length; i++) {
Person[i]=sc.nextInt();
sum += Person[i];
}
Arrays.sort(Person);
for(int i = 0 ; i<Person.length;i++) {
for(int j = 1 ; j < 9;j++) {
if(Person[i]+Person[j]==sum-100) {
fake1=i;
fake2=j;
break;
}
}
}
for(int i = 0 ; i < Person.length;i++) {
if(i==fake1||i==fake2) {
continue;
}
System.out.println(Person[i]);
}
}
}
- for 문 두번을 이용해서 가짜 일곱난쟁이를 찾을 수 있습니다.
DFS를 이용한 문제풀이
package com.Back;
import java.io.BufferedReader;
import java.io.InputStreamReader;
public class Back_3040 {
public static int arr[] = new int[9];
public static int nums[] = new int[7];
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
for (int i = 0; i < 9; i++) {
arr[i] = Integer.parseInt(br.readLine());
}
dfs(0, 0);
}
public static void dfs(int cnt, int start) {
if (cnt == 7) {
int sum = 0;
for (int i = 0; i < 7; i++) {
sum += nums[i];
}
if (sum == 100) {
for (int i = 0; i < 7; i++) {
System.out.println(nums[i]);
}
return;
}
return;
}
for (int i = start; i < 9; i++) {
nums[cnt] = arr[i];
dfs(cnt + 1, i + 1);
}
}
}
'Algorithm > 백준 알고리즘' 카테고리의 다른 글
백준_11725 트리의 부모 찾기 (자바) / 자료구조 & dfs (0) | 2021.04.05 |
---|---|
백준_1158 요세푸스 문제(자바) / 자료구조 (0) | 2021.04.04 |
백준_7576 토마토(자바) / BFS (0) | 2021.04.03 |
백준_16926 배열 돌리기1(자바) (0) | 2021.04.03 |
백준_1946 신입 사원(자바) / 그리디 알고리즘 (0) | 2021.04.02 |