Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- m585 수리
- 유니티 머지
- Unity
- 유니티 합치기
- nav거리
- 깃허브 데스크탑 합치기
- Github DeskTop Merge
- 오브젝트 깜빡임
- navigation
- 몬스터
- nav오브젝트사이거리
- m585
- unity git
- m590 수리
- 유니티 해상도 변경
- networkobject
- stateauthority
- networkbehaviourid
- unity merge
- unity 병합
- 유니티
- 유니티 해상도
- githubdesktopmerge
- 유니티 해상도 설정
- 유니티 브랜치 merge
- M590
- networkobject.networkid
- NavMesh
- 깃허브 데스크탑 병합
Archives
- Today
- Total
집게사장의 꿈
백준 c# 4949 균형잡힌 세상 본문
Vp 문제에서 '[' 가 추가된 버전
([)]은 고려하지 않고 바로 다음 짝 지음만을 판단
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApp1
{
internal class Program
{
static void Main(string[] args)
{
string str = Console.ReadLine();
Stack<int> sta = new Stack<int>();
bool flag = false;
while (str[0] != '.')
{
foreach (int c in str)
{
switch (c)
{
case '(': case '[':
sta.Push(c);
break;
case ')': case ']':
if (sta.Count < 1) flag = true;
else
{
int p = sta.Pop();
if (p != '(' && c==')') flag = true;
else if (p != '[' && c == ']') flag = true;
}
break;
}
//정크값 삽입
if (flag) { sta.Push(-1); break; }
}
if (sta.Count > 0) Console.WriteLine("no");
else Console.WriteLine("yes");
str = Console.ReadLine();
sta.Clear();
flag = false;
}
}
}
}
'기타 > 백준' 카테고리의 다른 글
백준 C# 2475 검증수 (0) | 2024.07.04 |
---|---|
백준 C# 2231 분해합 (0) | 2024.07.04 |
백준 C# 9012 괄호 (0) | 2024.06.09 |
백준 C# 10773 제로 (0) | 2024.06.06 |
백준 C# 28278 스택 2 (0) | 2024.06.06 |