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
- 윈도우
- AI Hub
- 2020 KAKAO BLIND RECRUITMENT
- 유니티
- c#
- 그리디알고리즘
- 단어 수학
- 원형
- 3344
- 알고리즘
- 18249
- 토글 그룹
- 알고리즘 목차
- 회의실 배정
- 백준
- 3273
- 수 만들기
- MySQL
- 문자열 압축
- 탄막
- 자료구조 목차
- 우분투
- 영상 프레임 추출
- 강의실2
Archives
- Today
- Total
와이유스토리
[DFS 단순] 백준 16637 괄호 추가하기 C++ 본문
※ 문제
https://www.acmicpc.net/problem/16637
※ 풀이
1) DFS 필요
#include<bits/stdc++.h>
using namespace std;
int n, ans = INT_MIN; // 음수 최저값 필요
string str;
int cal(int depth, int a, int b) {
if (depth < 0) { // 인덱스 0 조심
return (a + b);
}
if (str[depth] == '+') return (a + b);
else if (str[depth] == '-') return (a - b);
else if (str[depth] == '*') return (a * b);
}
void dfs(int depth, int val) { // depth 피연산자 확인
if (depth == n - 1) { // 마지막 피연산자 계산
ans = max(ans, cal(depth - 1, val, (str[depth] - '0')));
return;
}
if (depth >= n) {
ans = max(ans, val);
return;
}
int temp = cal(depth + 1, (str[depth] - '0'), (str[depth + 2] - '0'));
int res1 = cal(depth - 1, val, temp);
int res2 = cal(depth - 1, val, (str[depth] - '0'));
dfs(depth + 4, res1); // str[depth]와 str[depth+2] 괄호 계산
dfs(depth + 2, res2); // str[depth]가 괄호 안에 없을 때 계산
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
cin >> n >> str;
dfs(0, 0);
cout << ans;
}
'코딩테스트 > 그래프|트리' 카테고리의 다른 글
[DFS 중복순열] 백준 17070 파이프 옮기기1 C++ (0) | 2022.02.02 |
---|---|
[DFS 순열] SWEA 1768 숫자 야구 게임 C++ (0) | 2022.01.31 |
[그래프(벨만 포드)] (CHECK) 백준 11657 타임머신 C++ (0) | 2022.01.27 |
[그래프(플로이드)] 백준 11404 플로이드 C++ (0) | 2022.01.27 |
[그래프(다익스트라)] 백준 1753 최단경로 C++ (0) | 2022.01.27 |
Comments