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
- 알고리즘
- 모던자바
- 백트래킹
- 자바
- backtracking
- OS
- DP
- Spring
- back-end
- 자료구조
- 네트워크
- DFS
- kotlin
- java
- 프로그래머스
- programmers
- 운영체제
- BFS
- Brute-force
- algorithm
- 백준
- TDD
- 그래프
- 코틀린
- baekjoon
- LEVEL2
- lambda
- Java8
- 프로젝트
- 스프링
Archives
- Today
- Total
요깨비's LAB
[프로그래머스, Java] 수식 최대화 본문
1. 우선순위 3가지 3! 연산으로 생성
2. 생성된 우선순위 기반으로 중위표현식을 후위표현식으로 생성
3. 생성된 후위표현식을 계산
4. 최대값과 비교 및 업데이트
요것만 반복해주면 됩니다.
근데 계속 틀렸다고해서 시간 엄청허비했는데 알고보니 Map 컬렉션에 저장해놓고 다음 연산을 위해서
이전 값 삭제 연산을 안해서 났던 에러... 참 아직도 멀었네요
import java.util.*;
class Solution {
public long solution(String expression) {
long answer = 0;
char[] operators = {'+', '-', '*'};
char[] carr = expression.toCharArray();
List<String> exp = new ArrayList<>();
StringBuilder sb = new StringBuilder();
for (char c : carr) {
if (c == '+' || c == '-' || c == '*') {
exp.add(sb.toString());
exp.add(String.valueOf(c));
sb = new StringBuilder();
} else {
sb.append(c);
}
}
exp.add(sb.toString());
int count = 0;
boolean[] isVisited = new boolean[3];
long max = Integer.MIN_VALUE;
for (int i = 0; i < 3; i++) {
Map<String, Integer> operatorsMap = new HashMap<>();
operatorsMap.putIfAbsent(String.valueOf(operators[i]), 0);
isVisited[i] = true;
for (int j = 0; j < 3; j++) {
if (isVisited[j]) continue;
isVisited[j] = true;
operatorsMap.putIfAbsent(String.valueOf(operators[j]), 1);
for (int k = 0; k < 3; k++) {
if (isVisited[k]) continue;
isVisited[k] = true;
operatorsMap.putIfAbsent(String.valueOf(operators[k]), 2);
long result = calculate(exp, operatorsMap);
max = result > max ? result : max;
count++;
operatorsMap.remove(String.valueOf(operators[k]));
isVisited[k] = false;
}
operatorsMap.remove(String.valueOf(operators[j]));
isVisited[j] = false;
}
isVisited[i] = false;
}
answer = max;
return answer;
}
public Long calculate(List<String> expression, Map<String, Integer> operatorsMap) {
List<String> prefixExpression = createPrefixExpression(expression, operatorsMap);
// System.out.println(prefixExpression);
Stack<Long> stack = new Stack<>();
for (String element : prefixExpression) {
if (element.equals("+")) {
long number1 = stack.pop();
long number2 = stack.pop();
long result= number2 + number1;
stack.push(result);
} else if (element.equals("-")) {
long number1 = stack.pop();
long number2 = stack.pop();
long result = number2 - number1;
stack.push(result);
} else if (element.equals("*")) {
long number1 = stack.pop();
long number2 = stack.pop();
long result = number2 * number1;
stack.push(result);
} else {
stack.push(Long.valueOf(element));
}
}
return Math.abs(stack.pop());
}
public List<String> createPrefixExpression(List<String> expression, Map<String, Integer> operatorsMap) {
Stack<String> stack = new Stack<>();
List<String> prefixExpression = new ArrayList<>();
for (String element : expression) {
if (element.equals("+") || element.equals("-") || element.equals("*")) {
if (stack.isEmpty()) {
stack.push(element);
} else {
if (operatorsMap.get(stack.peek()) < operatorsMap.get(element)) {
stack.push(element);
} else {
while (!stack.isEmpty() && operatorsMap.get(stack.peek()) >= operatorsMap.get(element)) {
prefixExpression.add(stack.pop());
}
stack.push(element);
}
}
} else {
prefixExpression.add(element);
}
}
while(!stack.isEmpty()) {
prefixExpression.add(stack.pop());
}
return prefixExpression;
}
}
1. 우선순위 3가지 3! 연산으로 생성
'알고리즘(Java) > 프로그래머스' 카테고리의 다른 글
[프로그래머스, Java] 로또의 최고순위와 최저순위 (0) | 2022.01.06 |
---|---|
[프로그래머스, Java] 튜플 (0) | 2021.10.16 |
[프로그래머스, Java] 자물쇠와 열쇠 (0) | 2021.09.23 |
[프로그래머스, Java] 거리두기 확인하기 (0) | 2021.09.09 |
[프로그래머스, Java] 메뉴 리뉴얼 (0) | 2021.08.17 |
Comments