티스토리 뷰
https://www.acmicpc.net/problem/10799
stack의 size를 통하여 계산을 통하게 되면 시간초과가 발생하여 수정하였습니다.
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 32 33 34 35 36 | #include <iostream> #include <stack> #include <cstring> using namespace std; stack <char> st; int main() { char s[100001]; cin >> s; int result = 0; int cnt = 0; for (int i = 0; i < strlen(s); i++) { if (s[i] == '(' && s[i + 1] == ')') { result += cnt; //cnt += st.size(); i++; } else { if (s[i] == '(') { //st.push(s[i]); cnt++; } else { //st.pop(); //cnt++; cnt--; result++; } } } cout << result <<'\n'; return 0; } | cs |
'알고리즘 > 자료구조' 카테고리의 다른 글
BOJ)10820 문자열 분석 (0) | 2017.06.20 |
---|---|
BOJ)1158 조세퍼스 문제 (0) | 2017.06.20 |
BOJ)10866 덱(deque) (0) | 2017.06.20 |
BOJ)1406 에디터 (0) | 2017.06.19 |
BOJ)9012 괄호 (0) | 2017.06.19 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- DP
- UIView Animation
- Grid
- BFS
- 스택
- 데이터 바인딩
- 그래프
- 백준온라인
- 백준
- BOJ
- listview
- 코딩야학
- 타일링
- WPF
- command
- XAML
- 객체
- Fakebook
- dfs
- CollectionView
- C++
- FEED
- 문자열
- Add TapGesture
- MVVM
- Cell Animation
- Custom Cell
- CustomCollectionViewCell
- 생활코딩
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함