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 |
Tags
- 게이트웨이
- 이분 매칭
- 스택
- 플로이드 와샬
- 백트래킹
- 구현
- 주울
- Spring Cloud Config
- docker-compose
- 서비스 디스커버리
- Zuul
- 달팽이
- spring cloud
- 구간 트리
- 이분 탐색
- dp
- 스프링 시큐리티
- 다익스트라
- Gradle
- 비트마스킹
- spring boot
- Logback
- Java
- 트리
- 메모이제이션
- ZuulFilter
- 유레카
- 도커
- BFS
- 완전 탐색
Archives
- Today
- Total
Hello, Freakin world!
[백준 1662번][Java] 압축 본문
포인트
유효한 괄호 단위로 문자열을 잘라 재귀로 넘기는게 포인트입니다.
여는 괄호가 나오면 이 여는 괄호의 짝인 닫는 괄호를 찾아줘야 됩니다. 그리고 그 문자열을 잘라 재귀로 넘겨주면서 글자 수를 계산하면 됩니다.
짝인 닫는 괄호를 구하는 방법은 간단합니다. 문자열을 순회하면서 openBracketCount(여는 괄호 수)를 세고 있다가 닫는 괄호가 나오면 하나씩 openBracketCount-1 해줍니다. 그러다가 openBracketCount == 0일때의 닫는 괄호가 유효한 괄호입니다.
...
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
// BufferedReader br = new BufferedReader(new FileReader("testcase.txt"));
String s = br.readLine();
int ret = uncompress(s);
System.out.println(ret);
}
private static int uncompress(String s) {
int count = 0;
for (int i = 0; i < s.length(); i++) {
char current_c = s.charAt(i);
if(current_c >= '0' && current_c <= '9') count++;
if(current_c == '(') {
int closedBracketIndex = getValidClosedBracket(i,s);
count--;
int k = s.charAt(i-1)-48;
count += k * uncompress(s.substring(i+1, closedBracketIndex));
i = closedBracketIndex;
}
}
return count;
}
private static int getValidClosedBracket(int targetOpenBracketIndex, String s) {
int openBracketCount = 1;
for (int i = targetOpenBracketIndex+1; i < s.length(); i++) {
char current_c = s.charAt(i);
if(current_c == '(') {
openBracketCount++; continue;
}
if(current_c == ')'){
openBracketCount--;
if(openBracketCount == 0) return i;
}
}
throw new RuntimeException("닫는 괄호 에러");
}
}
'알고리즘 > PS' 카테고리의 다른 글
[백준 17144번][Java] 미세먼지 안녕! (0) | 2021.04.21 |
---|---|
[백준 15685번][Java] 드래곤 커브 (0) | 2021.04.21 |
[14719번][Java] 빗물 (0) | 2021.04.20 |
[백준 2304번][Java] 창고 다각형 (0) | 2021.04.20 |
[백준 2573번][Java] 빙산 - 구현, 그래프 (0) | 2020.11.10 |
Comments