스택 (stack)은 기본적인 자료구조 중 하나로, 컴퓨터 프로그램을 작성할 때 자주 이용되는 개념이다. 스택은 자료를 넣는 (push) 입구와 자료를 뽑는 (pop) 입구가 같아 제일 나중에 들어간 자료가 제일 먼저 나오는 (LIFO, Last in First out) 특성을 가지고 있다.
1부터 n까지의 수를 스택에 넣었다가 뽑아 늘어놓음으로써, 하나의 수열을 만들 수 있다. 이때, 스택에 push하는 순서는 반드시 오름차순을 지키도록 한다고 하자. 임의의 수열이 주어졌을 때 스택을 이용해 그 수열을 만들 수 있는지 없는지, 있다면 어떤 순서로 push와 pop 연산을 수행해야 하는지를 알아낼 수 있다. 이를 계산하는 프로그램을 작성하라.
첫 줄에 n (1 ≤ n ≤ 100,000)이 주어진다. 둘째 줄부터 n개의 줄에는 수열을 이루는 1이상 n이하의 정수가 하나씩 순서대로 주어진다.
물론 같은 정수가 두 번 나오는 일은 없다.
:: 실패 이유 : 컴파일 에러
: 개선하지 않는 이유 : 뭐가 문제인지 모르겠다.
: 프로그램 자체는 문제가 말하는 대로 흘러가는데, 정작 컴파일 에러가 계속 뜬다.
: C#은 대체로 전부 문제가 많은 게 아닐까?
: 질문 되면 질문을 올려보고, 안되면 다른 언어로 도전 고려
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading.Tasks;
namespace Stack05
{
class Program
{
static void Main(string[] args)
{
// :: Initialise
Stack<int> stack = new Stack<int>();
List<bool> processChecker = new List<bool>();
Queue<int> input = new Queue<int>();
// :: Input Command
int commandSize = Int32.Parse(Console.ReadLine()); // :: CommandSize
for(int i = 0; i < commandSize; i++)
{
// :: Save Input in Queue
input.Enqueue(Int32.Parse(Console.ReadLine()));
}
// :: Start Program
for (int i = 1; i <= commandSize; i++)
{
// :: Push
stack.Push(i);
processChecker.Add(true);
// :: If stack has remains & current stack last value same as input first value;
while (stack.Count != 0 && stack.Peek() == input.Peek())
{
// :: Pop & input Queue dequeue
stack.Pop();
processChecker.Add(false);
input.Dequeue();
}
}
// :: If stack has something : error
if(stack.Count() != 0)
{
Console.WriteLine("NO");
}
// :: else print process
else
{
foreach (var itm in processChecker)
{
Console.WriteLine("{0}", itm == true ? "+" : "-");
}
}
// :: End Program
// Console.ReadKey();
}
}
}
'C#' 카테고리의 다른 글
백준 10172 : 개 // 성공 (0) | 2020.11.07 |
---|---|
백준 10171 : 고양이 // 성공 (0) | 2020.11.06 |
백준 10828 : 스택 // 실패 (0) | 2020.11.04 |
백준 4949: 균형잡힌 세상 // 성공 (0) | 2020.11.01 |
백준 9012 : 괄호 // 성공 (0) | 2020.10.31 |