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
- 실기
- linux
- C++
- 자격증
- Bus
- hdl
- 정보처리기사
- 백준
- FPGA
- amba
- 코딩테스트
- UNIX
- 리눅스
- axi
- chip2chip
- HDLBits
- Vivado
- AMBA BUS
- Xilinx
- vitis
- verilog
- boj
- 정처기
- Backjoon
- Zynq
- SQL
- baekjoon
- Beakjoon
- java
- verilog HDL
Archives
- Today
- Total
Hueestory
[17298] 오큰수 (C++) 본문
#include <iostream>
#include <vector>
#include <algorithm>
#include <stack>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int n; cin >> n;
vector<int> A(n, 0);
vector<int> ans(n, 0);
stack<int> st;
st.push(0);
for (int i = 0; i < n; i++)
cin >> A[i];
for (int i = 1; i < n; i++) {
while (!st.empty() && A[st.top()] < A[i]) {
ans[st.top()] = A[i];
st.pop();
}
st.push(i);
}
while (!st.empty()) {
ans[st.top()] = -1;
st.pop();
}
for (auto x : ans)
cout << x << " ";
}
1. stack에 A의 index를 순서대로 push
2. stack이 비어있지 않고 A[i]이 A[st.top()] 보다 큰 경우 해당 index의 A 값을 ans에 입력
3. while loop가 종료된 후 stack이 비어있지 않다면 빌 때까지 ans에 '-1'을 입력
'PS(중단) > BOJ' 카테고리의 다른 글
[1377] 버블 소트 (C++) (0) | 2024.04.23 |
---|---|
[2750] 수 정렬하기 (C++) (0) | 2024.04.23 |
[11286] 절댓값 힙 (C++) (0) | 2024.04.22 |
[2164] 카드2 (C++) (0) | 2024.04.22 |
[1874] 스택 수열 (C++) (0) | 2024.04.22 |
Comments