-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโll occasionally send you account related emails.
Already on GitHub? Sign in to your account
17-suhyun113 #53
17-suhyun113 #53
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
์ค๋๋ง์ ์คํ ๋ฌธ์ ์ข์์...
ํ์ด ๊ณผ์ ์ ์คํ
๋ณ๋ก ์์ธํ๊ฒ ์ค๋ช
ํด ์ฃผ์
์ ์ดํดํ๊ธฐ ์ฌ์ ๋ ๊ฒ ๊ฐ์์ ๐๐ป
๊ฐ์ธ์ ์ผ๋ก ์ฌ๋ฏธ์๋ ๋ฌธ์ ์ธ๋ฐ ์ด๊ฑฐ ํ๋ฒ ์ด๋์?ใ
ใ
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
๋จผ์ ๋ฆ์ ๋ฆฌ๋ทฐ ์ฃ์กํฉ๋๋ค๐ญ
์ ๋ ์คํ ์ฒ์ ํ ๋ ํ์๋ ๋ฌธ์ ์ธ๋ฐ, ๋ฌธ์ ์ดํด๊ฐ ์ฝ์ง ์์์ ์์ง๋ ๊ธฐ์ต์ ๋จ๋ ๋ฌธ์ ๋ค์!
์ ๋ NO์ผ ๋ ํ๋๊ทธ ๋ณ์๋ฅผ ๋ฐ๋ก ์ฌ์ฉํ์ง ์๊ณ , ์กฐ๊ฑด์ด ๋ง์ง ์์ ๋ ๋ฐ๋ก ์ข
๋ฃํ๋ ๋ฐฉ์์ ์ฌ์ฉํ์ด์.
๋ฆฌ๋ทฐํ๋ค ๋ณด๋, ์ด์ ์ ์ ๊ฐ ํ์๋ ์ฝ๋๊ฐ ์กฐ๊ธ ์ง์ ๋ถํ๊ฒ ๋๊ปด์ ธ์ ๋ฆฌํฉํ ๋งํ๊ฒ ๋์ต๋๋ค. ๋๋ถ์ ๋ ๊น๋ํ ์ฝ๋๊ฐ ๋์๋ค์.
๊น๋ํ ํ์ด ์ ๋ดค์ต๋๋ค๐
#include <iostream>
#include <stack>
#include <string>
using namespace std;
int main()
{
string buffer;
stack<int> s;
int n;
cin >> n;
int count = 0;
while (n--)
{
int num;
cin >> num;
if (num > count)
{
while (num != count)
{
s.push(++count);
buffer += "+\n";
}
}
else if (num != s.top())
{
cout << "NO";
return 0;
}
s.pop();
buffer += "-\n";
}
cout << buffer;
return 0;
}
# ์คํ์ ์ต์๋จ์ด num๊ณผ ๊ฐ๋ค๋ฉด pop | ||
if stack and stack[-1] == num: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
stack[-1]์ ์ ๊ทผํ ๋ ์คํ์ด ๋น๋ฉด ์ค๋ฅ๊ฐ ์๊ธธ ์ ์์ผ๋, ์ด๋ฐ ์์ธ์ฒ๋ฆฌ๋ ์ข์ ๋ฐฉ์์ด์ฃ !
๋ค๋ง, ์ด ๋ฌธ์ ์์๋ ์คํ์ด ๋น๋ ๊ฒฝ์ฐ๊ฐ ์์ด์ ์์ธ์ฒ๋ฆฌ ์์ด if stack[-1] == num:๋ง ์ฌ์ฉํด๋ ๊ด์ฐฎ์ต๋๋ค.
๐ ๋ฌธ์ ๋งํฌ
https://www.acmicpc.net/problem/1874
โ๏ธ ์์๋ ์๊ฐ
์ฝ 1์๊ฐ
โจ ์๋ ์ฝ๋
๐1. ๋ฌธ์ ์ค๋ช
์ฃผ์ด์ง ์์ด์ ์คํ์ ์ฌ์ฉํด ๋ง๋ค์ด๋ผ ์ ์๋์ง ํ์ธํ๊ณ , ๊ฐ๋ฅํ๋ค๋ฉด ์ด๋ค push (+)์ pop(-) ์ฐ์ฐ์ ์ํํด์ผ ํ๋์ง๋ฅผ ์ถ๋ ฅํ๋ ๋ฌธ์ ์ ๋๋ค.
๐งํต์ฌ : ์คํ์ ํ์ ์ ์ถ ํน์ฑ๊ณผ, ์๋ฅผ ๋ฃ๋ ์์๊ฐ ๋ฐ๋์ ์ค๋ฆ์ฐจ์์ด์ด์ผ ํ๋ค๋ ์กฐ๊ฑด
๐2. ๋ฌธ์ ํ์ด ๋ ผ๋ฆฌ
๐1) ์ ๋ ฅ ๋ฐ๊ธฐ๐
๐2) ์คํ์ ์๋ฅผ pushํ๋ ๊ณผ์ ๐
๐3) pop ์ฐ์ฐ ์ฒ๋ฆฌ๐
๐4) ๋ถ๊ฐ๋ฅํ ๊ฒฝ์ฐ ์ฒ๋ฆฌ๐
๐5) ๊ฒฐ๊ณผ ์ถ๋ ฅ๐
๐3. ์ต์ข ์ฝ๋
๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ
์คํ์ ์ฌ์ฉํ๋ฉด์ ํ์ ์ ์ถ ํน์ฑ์ ํ์ฉํด๋ณผ ์ ์์ด์ ์ข์์ต๋๋ค. ์คํ ๋ฌธ์ ๋ฅผ ์ค๋๋ง์ ํ์ด๋ดค๋๋ฐ,
ํด๋ณด๋ ์๊ฐ๋ ๋๊ณ ๊ณต๋ถํ ์ ์์ด์ ์ข์๋ ๊ฒ ๊ฐ์ต๋๋ค.