Recent Posts
Notice
No Rules Rules
막대기 (feat. 백준, 17608번) 본문
728x90
반응형
막대기
https://www.acmicpc.net/problem/17608
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <stack>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
register int N, t, ans = 1;
stack<int> arr;
cin >> N;
for(register int n = 0, v; n < N; ++n)
cin >> v, arr.push(v);
t = arr.top(), arr.pop();
while(!arr.empty()){
if(t < arr.top())
t = arr.top(), ++ans;
arr.pop();
}
cout << ans;
return 0;
}
// *&)*@*
반응형
Last In, Fast Out인 자료구조 stack을 이용하면 손쉽게 구할 수 있는 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
윷놀이 (feat. 백준, 2490번) (0) | 2023.03.14 |
---|---|
비밀번호 찾기 (feat. 백준, 17219번) (0) | 2023.03.14 |
팝핀 소다 (feat. 백준, 27724번) (0) | 2023.03.14 |
분수 합 (feat. 백준, 1735번) (0) | 2023.03.14 |
찬반투표 (feat. 백준, 27736번) (0) | 2023.03.14 |
Comments