[BOJ][실4][10773] 제로

문제 링크

문제링크

첫 번째 풀이 : 자료구조

알고리즘

0을 입력받으면 pop 해줍니다.

정답코드

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
#include <bits/stdc++.h>
using namespace std;

using ll = long long;
using pii = pair<int, int>;

const int MAX = 100'010;

int n, m, k;
stack<int> st;
int main()
{
    //freopen("input.txt", "r", stdin);
    ios_base::sync_with_stdio(0); cin.tie(0);
    cin >> n;
    for (int i = 0; i < n; i++) {
        cin >> m;
        if (m != 0) st.push(m);
        else st.pop();
    }
    int ans = 0;
    while (!st.empty()) {
        ans += st.top();
        st.pop();
    }
    cout << ans << "\n";
    return 0;
}

Success Notice: 수고하셨습니다. :+1:

Leave a comment