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
- 자료구조
- 알고리즘
- Unreal Engine 5
- 다익스트라
- 그래프
- 트리
- 시뮬레이션
- 다이나믹 프로그래밍
- ue5
- BFS
- 스택
- 정렬
- DFS
- 수학
- 유니티
- c++
- 백준
- 투 포인터
- 백트래킹
- 그리디 알고리즘
- 유니온 파인드
- Team Fortress 2
- 우선순위 큐
- 구현
- 브루트포스
- VR
- 문자열
- XR Interaction Toolkit
- 재귀
- 누적 합
Archives
- Today
- Total
1일1알
백준 6198번 옥상 정원 꾸미기 C++ 본문
스택 자료구조를 이용해서 문제를 해결하였다.
스택을 쌓을때 크기가 작아지도록만 쌓이게 하고 하나 쌓았을 때 전에 있던 모든 빌딩들이 지금 쌓은 옥상을 확인할 수 있으므로 스택의 사이즈 - 1을 더해준다.
만약 지금 top보다 큰 빌딩이 오면 스택의 top이 빌딩보다 커질때까지 pop을 해준다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
using namespace std;
using ll = long long;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int n;
cin >> n;
ll ans = 0;
stack<int> st;
for (int i = 0; i < n; i++) {
int h;
cin >> h;
if (st.empty()) {
st.push(h);
}
else {
if (st.top() <= h) {
while (st.top() <= h) {
st.pop();
if (st.empty()) break;
}
}
st.push(h);
}
ans += st.size() - 1;
}
cout << ans;
};
'알고리즘' 카테고리의 다른 글
백준 1120번 문자열 C++ (0) | 2022.03.24 |
---|---|
백준 1475번 방 번호 C++ (0) | 2022.03.23 |
백준 2174번 로봇 시뮬레이션 C++ (0) | 2022.03.20 |
백준 2688번 줄어들지 않아 C++ (0) | 2022.03.19 |
백준 12904번 A와 B C++ (0) | 2022.03.18 |