본문 바로가기

Algorithm

[백준 알고리즘] 1874번 스택 수열

스택 수열 성공

문제

스택 (stack)은 기본적인 자료구조 중 하나로, 컴퓨터 프로그램을 작성할 때 자주 이용되는 개념이다. 스택은 자료를 넣는 (push) 입구와 자료를 뽑는 (pop) 입구가 같아 제일 나중에 들어간 자료가 제일 먼저 나오는 (LIFO, Last in First out) 특성을 가지고 있다.

1부터 n까지의 수를 스택에 넣었다가 뽑아 늘어놓음으로써, 하나의 수열을 만들 수 있다. 이때, 스택에 push하는 순서는 반드시 오름차순을 지키도록 한다고 하자. 임의의 수열이 주어졌을 때 스택을 이용해 그 수열을 만들 수 있는지 없는지, 있다면 어떤 순서로 push와 pop 연산을 수행해야 하는지를 알아낼 수 있다. 이를 계산하는 프로그램을 작성하라.

입력

첫 줄에 n (1 ≤ n ≤ 100,000)이 주어진다. 둘째 줄부터 n개의 줄에는 수열을 이루는 1이상 n이하의 정수가 하나씩 순서대로 주어진다. 물론 같은 정수가 두 번 나오는 일은 없다.

출력

입력된 수열을 만들기 위해 필요한 연산을 한 줄에 한 개씩 출력한다. push연산은 +로, pop 연산은 -로 표현하도록 한다. 불가능한 경우 NO를 출력한다.

 

풀이1

직접 스택 함수 코드를 작성해 사용해 보았다. vector와 스택 라이브러리를 배우기 전이라 사이즈를 최대로 할당해주었다. C++ STL  스택 라이브러리를 사용한 코드는 아래 작성해두었다.

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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#include <stdio.h>
#include <string.h>
 
#define True 1
#define False 0
#define Ensize 100000
 
typedef struct MKSTACK {
    int data[Ensize];
    int top;
}Stack;
 
int RTSTACK(Stack* st) {
    st->top = -1;
    return 0;
}
 
int PUSH(Stack* st, int num) {
    if (st->top >= Ensize)
        return False;
 
    else {
        st->top = st->top + 1;
        st->data[st->top] = num;
        return True;
    }
}
 
int POP(Stack* st) {
    if (st->top < 0)
        return 0;
 
    else {
        st->data[st->top] = 0;
        st->top--;
        return 0;
    }
}
 
int main() {
 
    Stack stack;
    int num, count;
    char res[200000];
    int sn = 0, rn = 0, check = 0, cash = 1;
    int jk = sn;
 
    RTSTACK(&stack);
 
    scanf("%d"&count);
 
    for (int i = 0; i < count; i++)
    {
        scanf("%d"&num);
        
        int cpl = stack.data[stack.top];
 
        if (num > cpl)//-1
        {
            for (int j = sn + 1; j <= num; j++) {//4 3 6
                PUSH(&stack, j);//1 2 3 4// 5 6
                res[rn++= '+';// + + + +//+ +
                jk = sn + cash++;
            
            }
            cash = 1;
            sn = jk;
 
        }
 
        if (num == stack.data[stack.top]) {
         
            POP(&stack);
            res[rn++= '-';//4 - /3 - /6 -
        }
 
        else
            check = -1;
 
    }
 
    if (check == -1)
        printf("NO");
    else
    for (int i = 0; i < rn; i++)
        printf("%c\n", res[i]);
 
    return 0;
}

 

 

풀이2

 

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 <algorithm>
#include <stdio.h>
#include <stack>
#include <queue>
using namespace std;
 
int n, temp;
queue<int> q;
stack<int> s;
queue<char> ans;
 
int main() {
    scanf("%d"&n);
    for (int i = 0; i < n; i++scanf("%d"&temp), q.push(temp);
    int l = 1;
    while (q.size()) {
        if (s.size() && s.top() == q.front()) {
            s.pop();
            q.pop();
            ans.push('-');
        }
        else if (l <= q.front()) {
            while (l <= q.front()) {
                s.push(l++);
                ans.push('+');
            }
        }
        else {
            printf("NO");
            return 0;
        }
    }
    while (ans.size()) printf("%c\n", ans.front()), ans.pop();
    return 0;
}
 
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
코드 출처: https://organize-study.tistory.com/60

https://www.acmicpc.net/problem/1874

 

1874번: 스택 수열

1부터 n까지에 수에 대해 차례로 [push, push, push, push, pop, pop, push, push, pop, push, push, pop, pop, pop, pop, pop] 연산을 수행하면 수열 [4, 3, 6, 8, 7, 5, 2, 1]을 얻을 수 있다.

www.acmicpc.net