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 | 31 |
Tags
- SWEA
- 탄막 이동
- mysqld.sock
- 문자열 압축
- 3273
- 회의실 배정
- 3344
- 윈도우
- MySQL
- 2020 KAKAO BLIND RECRUITMENT
- c#
- 알고리즘
- 백준
- 자료구조 목차
- 탄막
- 영상 프레임 추출
- 우분투
- AI Hub
- 탄막 스킬 범위
- 원형
- 단어 수학
- 수 만들기
- 마우스 따라다니기
- 토글 그룹
- 강의실2
- 걷는건귀찮아
- 그리디알고리즘
- 알고리즘 목차
- 유니티
- 18249
Archives
- Today
- Total
와이유스토리
[DFS] 프로그래머스 N으로 표현 C++ 본문
https://school.programmers.co.kr/learn/courses/30/lessons/42895
#include <string>
using namespace std;
int n, num, answer;
void dfs(int depth, int val) {
if (val == num) {
answer = min(answer, depth);
return;
}
if (depth >= 8) return;
int temp = 0;
for(int i=0; i<(8-depth); i++) {
temp = temp * 10 + n;
dfs(depth + 1 + i, val + temp);
dfs(depth + 1 + i, val - temp);
dfs(depth + 1 + i, val * temp);
dfs(depth + 1 + i, val / temp);
}
}
int solution(int N, int number) {
n = N;
num = number;
answer = 9;
dfs(0, 0);
return (answer > 8)? -1 : answer;
}
'코딩테스트 > 그래프|트리' 카테고리의 다른 글
[DFS+우선순위큐] 프로그래머스 상담원 인원 C++ (0) | 2023.08.19 |
---|---|
[BFS+DP] 프로그래머스 리틀 프렌즈 사천성 C++ (1) | 2023.04.15 |
[DFS] 백준 테트로미노 C++ (0) | 2023.04.12 |
[이진 트리] (CHECK) 프로그래머스 길 찾기 게임 C++ (0) | 2023.03.04 |
[트리(순회)] (CHECK) 이진 트리, 전위, 중위, 후위, 레벨 순회 및 트리 복원 C++ (0) | 2023.03.01 |
Comments