250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 주택가 잠실새내
- 막내의막무가내 플러터 flutter
- 막내의막무가내 목표 및 회고
- 막내의막무가내
- Fragment
- 막내의막무가내 코틀린 안드로이드
- 주엽역 생활맥주
- 막내의막무가내 프로그래밍
- 막내의 막무가내 알고리즘
- 막내의막무가내 코볼 COBOL
- 막내의 막무가내
- 막내의막무가내 SQL
- 안드로이드 sunflower
- 막무가내
- 안드로이드
- 막내의막무가내 코틀린
- 막내의막무가내 알고리즘
- 프래그먼트
- 막내의막무가내 안드로이드
- 막내의막무가내 rxjava
- 막내의막무가내 안드로이드 코틀린
- flutter network call
- 막내의막무가내 일상
- 막내의막무가내 안드로이드 에러 해결
- 부스트코스
- 안드로이드 Sunflower 스터디
- 2022년 6월 일상
- 프로그래머스 알고리즘
- 부스트코스에이스
- 막내의막무가내 플러터
Archives
- Today
- Total
막내의 막무가내 프로그래밍 & 일상
[알고리즘] 백준 16922 로마 숫자 만들기 -백트래킹- 자바, 코틀린 본문
728x90
https://www.acmicpc.net/problem/16922
백준 백트래킹 유형문제를 골라 풀어봤습니다. ㅎㅎ
4개의 로마숫자가 있는데 N개를 사용하여 만들 수 있는 합의 모든 경우의 수를 구하는 문제였습니다.
처음에 N이 20개로 작아보여서 Set과 리얼완전모두탐색으로 풀었는데 시간초과가 났네요 ㅠ
중복배열선언과 같은 합이 안나오게 탐색하게끔 인덱스를 설정하여 탐색하여 통과할 수 있었습니다. ㅎㅅㅎ
[Set 사용시 시간초과]
import java.util.HashSet;
import java.util.Scanner;
public class Main {
private static int N; // 로마 숫자 N개
private static int[] nums = new int[]{1, 5, 10, 50};
private static HashSet<Integer> set = new HashSet<>();
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
N = sc.nextInt();
dfs(0, 0);
System.out.println(set.size());
}
private static void dfs(int depth, int sum) {
if (depth == N) {
set.add(sum);
return;
}
for (int i = 0; i < 4; i++) {
dfs(depth + 1, sum + nums[i]);
}
}
}
[Java]
import java.util.Scanner;
public class Main {
private static int N; // 로마 숫자 N개
private static int[] nums = new int[]{1, 5, 10, 50};
private static boolean[] isVisited = new boolean[1001];
private static int result = 0;
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
N = sc.nextInt();
dfs(0, 0, 0);
System.out.println(result);
}
private static void dfs(int depth, int index, int sum) {
if (depth == N) {
if (!isVisited[sum]) {
isVisited[sum] = true;
result++;
}
return;
}
for (int i = index; i < 4; i++) {
// 중복탐색안되게끔 index 설정
dfs(depth + 1, i, sum + nums[i]);
}
}
}
[Kotlin]
import java.util.*
private var N // 로마 숫자 N개
= 0
private val nums = intArrayOf(1, 5, 10, 50)
private val isVisited = BooleanArray(1001)
private var result = 0
fun main(args: Array<String>) {
val sc = Scanner(System.`in`)
N = sc.nextInt()
dfs(0, 0, 0)
println(result)
}
private fun dfs(depth: Int, index: Int, sum: Int) {
if (depth == N) {
if (!isVisited[sum]) {
isVisited[sum] = true
result++
}
return
}
for (i in index..3) { // 중복탐색안되게끔 index 설정
dfs(depth + 1, i, sum + nums[i])
}
}
댓글과 공감은 큰 힘이 됩니다. 감사합니다. !!!
https://github.com/mtjin/algorithm_practice/commit/305eab7698ef3ecc22adcd4bbe8b4c291ab703f4
728x90
'알고리즘 > DFS, BFS, 시뮬, 백트래킹' 카테고리의 다른 글
[알고리즘] 백준 15658 연산자 끼워넣기 (2) -백트래킹- 자바, 코틀린 (1) | 2022.03.09 |
---|---|
[알고리즘] 백준 10974 모든 순열 -백트래킹- 자바, 코틀린 (2) | 2022.01.04 |
[알고리즘] 백준 15656 N과 M (7) -백트래킹- 자바 (2) | 2021.11.22 |
[알고리즘] 프로그래머스 가장 큰 정사각형 찾기 -BFS, DP- 자바 (0) | 2021.08.10 |
[알고리즘] 백준 1405 미친 로봇 -DFS, 완전탐색- 자바 코틀린 (0) | 2021.08.09 |
Comments