티스토리 뷰
올바른 괄호
#include <iostream>
#include <vector>
#include <stack>
#include <algorithm>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int a[1501];
int main() {
//freopen("input.txt", "rt", stdin);
int i, key, cnt=0, flag=0;
stack<char> s;
char a[50];
i=0;
scanf("%s", a);
for(i=0; a[i]!='\0'; i++){
if(a[i]=='('){
s.push(a[i]);
}else {
if(s.empty()){
flag=1;
printf("NO");
break;
}
else s.pop();
}
}
if(s.empty()) {
if(flag==0){
printf("YES");
}
}
else {
printf("NO");
}
return 0;
}
기차운행
#include <iostream>
#include <vector>
#include <stack>
#include <algorithm>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main() {
//freopen("input.txt", "rt", stdin);
int n, m, i, j, key, cnt=0, flag=0;
stack<int> s;
scanf("%d", &n);
vector<int> a(n+1);
for(i=1; i<=n; i++){
a[i]=i;
}
vector<char> str;
j=1;
for(i=1; i<=n; i++){
scanf("%d", &m);
s.push(m);
str.push_back('P');
while(1){
if(s.empty()) break;
if(s.top()==a[j]){
s.pop();
str.push_back('O');
j++;
} else break;
}
}
if(!s.empty()){
printf("impossible");
}else {
for(i=0; i<str.size(); i++){
printf("%c", str[i]);
}
}
return 0;
}
'lecture > algorithm - c++' 카테고리의 다른 글
[c++] DFS를 이용한 부분집합 (0) | 2021.01.06 |
---|---|
[c++] 이진트리 깊이우선탐색(DFS)과 재귀함수 (0) | 2021.01.03 |
[c++] 재귀함수와 stack frame (0) | 2021.01.02 |
[c++] Ugly number(세 수 비교하기), K진수 출력(stack) (0) | 2020.12.31 |
[c++] ++a, a++ 전위연산자, 후위연산자 예제 (0) | 2020.12.31 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 동적프로그래밍
- 세마포어
- stackframe
- 퀵정렬
- C++
- 최단경로
- 스텍
- 자료구조
- dfs
- javascript
- 소프트웨어
- 이진탐색
- 재귀함수
- 입출력장치
- 교착상태
- server side rendering
- 클래스
- client side rendering
- 운영체제
- 알고리즘
- 병행프로세스
- 인접리스트
- 구조체
- Java
- 배열
- Stack
- C
- 인접행렬
- BFS
- react
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함