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
- 알고리즘
- 외부설정
- Application Event
- WebApplication Type
- OAuth2
- EnableAutoConfiguration
- 정적 리소스
- @Profile
- HATEOAS
- Spring Security
- application.properties
- 스프링부트
- 백트래킹
- Application Argument
- 스프링 부트
- 리소스핸들러
- cors
- JsonSerializer
- @ConfigurationProperties
- Application Runner
- AuthenticationPrincipal
- 다익스트라
- 백준
- webjar
- 브루트포스
- HttpMessageConverters
- 리소스 서버
- JPA
- rest api
- 백기선
Archives
- Today
- Total
아카이브
[백준]1874. 스택 수열 본문
public class p1874 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int[] arr = new int[n + 1];
for (int i = 1; i <= n; i++) {
arr[i] = sc.nextInt();
}
StringBuilder sb = new StringBuilder();
Stack<Integer> stack = new Stack<>();
int num = 1;
int index = 1;
while (index <= n) {
int next = arr[index];
if (stack.size() < 1) {
for (; num <= next; num++) {
stack.push(num);
sb.append('+');
}
} else {
int top = stack.peek();
if (next == top) {
stack.pop();
sb.append('-');
index++;
} else {
if (num > next) {
System.out.println("NO");
return;
}
for (; num <= next; num++) {
stack.push(num);
sb.append('+');
}
}
}
}
for (int i = 0; i < sb.length(); i++) {
System.out.println(sb.charAt(i));
}
}
}
수열이 1 2 5 3 4 인 경우
다음 수열 탐색이 3이고, 현재 오름차순 숫자가 4일 경우 pop 할 수 없으므로 NO를 출력하고 종료
'자료구조&알고리즘' 카테고리의 다른 글
[백준]18111. 마인크래프트 (0) | 2021.01.10 |
---|---|
[백준]1987.알파벳 (0) | 2020.09.14 |
[백준]13549.숨바꼭질3 (0) | 2020.09.14 |
[백준]1753.최단경로 (0) | 2020.09.14 |
[백준]1238.파티 (0) | 2020.09.14 |