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
- 토글 그룹
- 탄막 이동
- 걷는건귀찮아
- 윈도우
- 알고리즘
- mysqld.sock
- 유니티
- 18249
- 백준
- MySQL
- 원형
- 문자열 압축
- 영상 프레임 추출
- 마우스 따라다니기
- 강의실2
- SWEA
- 수 만들기
- 단어 수학
- AI Hub
- 3344
- 자료구조 목차
- 탄막
- 2020 KAKAO BLIND RECRUITMENT
- 그리디알고리즘
- 우분투
- c#
- 탄막 스킬 범위
- 3273
- 회의실 배정
- 알고리즘 목차
Archives
- Today
- Total
와이유스토리
[스택] 프로그래머스 수식 최대화 C++ 본문
https://programmers.co.kr/learn/courses/30/lessons/67257
#include <string>
#include <vector>
#include <stack>
#include <iostream>
using namespace std;
string str;
long long answer; // 자료형
int order[3], visited[3]; // +, -, * 우선순위
stack<long long> s;
stack<char> op;
int getOrder(char ch) { // 우선순위
if (ch == '+') return order[0];
if (ch == '-') return order[1];
if (ch == '*') return order[2];
}
void calc() {
long long b = s.top(); s.pop();
long long a = s.top(); s.pop();
char ch = op.top(); op.pop();
if (ch == '+') s.push(a + b);
else if (ch == '-') s.push(a - b); // 순서 조심
else s.push(a * b);
}
void post() {
long long temp = 0;
for (int i = 0; i < str.size(); i++) {
if ((str[i] >= '0') && (str[i] <= '9'))
temp = (temp * 10) + (str[i] - '0');
else {
s.push(temp);
temp = 0;
while (!op.empty() && getOrder(str[i]) <= getOrder(op.top()))
calc();
op.push(str[i]);
}
}
s.push(temp); // 마지막 숫자 넣기
while (!op.empty()) calc(); // 나머지 연산자 계산
}
void dfs(int depth) {
if (depth == 3) {
while (!s.empty()) s.pop();
while (!op.empty()) op.pop();
post();
answer = max(answer, abs(s.top())); // 절댓값
return;
}
for (int i = 0; i < 3; i++) {
if (visited[i]) continue;
visited[i] = true;
order[depth] = i + 1;
dfs(depth + 1);
visited[i] = false;
}
}
long long solution(string expression) {
str = expression;
dfs(0);
return answer;
}
'코딩테스트 > 구현|기타' 카테고리의 다른 글
[집합] 프로그래머스 튜플 Python (0) | 2022.02.04 |
---|---|
[구현] 프로그래머스 [1차] 다트 게임 C++ (0) | 2022.02.04 |
[비트] SWEA 1288 새로운 불면증 치료법 C++ (0) | 2022.01.22 |
[스택] 프로그래머스 크레인 인형 뽑기 게임 C++ (0) | 2021.12.31 |
[정렬] 프로그래머스 실패율 C++ (0) | 2021.12.31 |
Comments