-
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
9-dhlee777 #42
9-dhlee777 #42
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.
๋ง์ต๋๋ค. ํด๋น ๋ฐฐ์ด์ ๋ค์ง๊ณ ํ๋ฉด ์ต์ ์ ๊ฒฝ์ฐ O(N)์ด N๋ฒ ๋ฐ์ํ๊ฒ ๋๊ณ t๋ ๋ฃ๊ฒ ๋๋ฉด O(N^3)์ด ๋ฐ์ํ๊ฒ ๋ฉ๋๋ค.
ํฌ ํฌ์ธํฐ๋ก ์ฒ์๊ณผ ๋ค์ ์ธ๋ฑ์ค๋ฅผ ๋จผ์ ์ ์ ํ๋ค ๋ค์ง์๋์ง ํ๋ณ ์ฌ๋ถ๋ง ํ์ธํ์ฌ ์ธ๋ฑ์ค๋ฅผ ์ค์ฌ์ค๋ค๋ฉด ์ฝ๊ฒ ํด๊ฒฐํ ์ ์์ต๋๋ค. ํด๋น ๋ถ๋ถ์ ์ ์ง์ ๊ฒ ๊ฐ๋ค์
์๋๋ ์ ํ์ด ์
๋๋ค.
#include <iostream>
#include <vector>
#include <string>
using namespace std;
int T, n, front, last, i, j;
string p, x, num;
vector<int> v;
bool removeFront, pass;
void Solve()
{
cin >> T;
while (T--)
{
v.clear();
num = "";
removeFront = true;
cin >> p >> n >> x;
for (i = 0; i < x.length(); i++)
{
if (x[i] >= '0' && x[i] <= '9')
{
num += x[i];
}
else if (x[i] == ',' || x[i] == ']' && num != "")
{
v.push_back(stoi(num));
num = "";
}
}
pass = true;
front = 0, last = v.size();
for (i = 0; i < p.length(); i++)
{
if (p[i] == 'R')
{
removeFront = (removeFront ? false : true);
}
else
{
if (front == last)
{
cout << "error" << "\n";
pass = false;
break;
}
if (removeFront) front++;
else last--;
}
}
if (pass)
{
vector<int> ans;
int len = last - front;
cout << "[";
for (i = 0; i < len; i++)
{
cout << (removeFront ? v[front++] : v[--last]);
if (i != len-1) cout << ",";
}
cout << "]\n";
}
}
}
int main()
{
cin.tie(nullptr);
ios::sync_with_stdio(false);
Solve();
return 0;
}
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.
์์ธ์ฒ๋ฆฌ ํ๋ ๋ถ๋ถ ์ธ์๊น์์ต๋๋ค.
์ ๋ ์ด๋ ๊ฒ ํ ๋ฒ ํ์ด๋ดค์ต๋๋ค.
import sys
from collections import deque
input = sys.stdin.readline
T = int(input())
for i in range(T):
hi = True
er = 'y'
a = list(input().strip())
n = int(input())
s = input().strip()[1:-1]
if not s:
if 'D' in a:
er = 'error'
else:
er = 'y'
else:
s = deque((map(int,s.split(','))))
for j in range(len(a)):
if a[j]=='R':
if hi:
hi = False
else:
hi = True
else:
if not s:
er = 'error'
else:
if hi:
s.popleft()
else:
s.pop()
if hi == False:
s.reverse()
else:
s = s
if er=='error':
print(er)
else:
s = list(s)
re = str(s).replace(" ", "")
print(re)
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.
์ด๋ฐ ๊ตฌํ ๋ฌธ์ ๋ ํญ์ ์ ์ฒด์ ์ธ ๋ก์ง์ ๋จผ์ ๊ตฌ์ํ๊ณ , ์ธ์ธํ ๋ถ๋ถ์ ํ๋์ฉ ๊ตฌํํ๋ Top-down ๋ฐฉ์์ผ๋ก ๊ตฌํํด์ผํ๋ ๊ฒ ๊ฐ์์.. ๋ฌธ์ ๋ถํ ์ ์ ํ๊ณ ๋ถํ ๋ ๋ฌธ์ ๋ฅผ ํด๊ฒฐํ๋ ๋ฐฉ๋ฒ์ ์ ์ธ์ฐ๋๊ฒ ์ค์ํ ๊ฒ ๊ฐ์ต๋๋ค
์ด๋ฒ ๋ฌธ์ ๋ Reverse๋ฅผ ์ด๋ป๊ฒ ์ ๊ตฌํํ๋๋๊ฐ ๋ฉ์ธ ๋ฌธ์ ์๋ ๊ฒ ๊ฐ์์! ์ค์ ์์๋ค์ ๋ค ๋ฐ๊ฟ ํ์ ์์ด ํฌ์ธํฐ๋ฅผ ์ ์ฌ์ฉํด์ ๋ฐ์ดํฐ๋ ๊ทธ๋๋ก ๋๊ณ ์ํ๋ ๋ฐฉ์๋๋ก ์ ๊ทผํ๋ ๋ฐฉ์์ ์์ฃผ ์ฌ์ฉ๋๊ณ , ๋ค์ํ๊ฒ ์์ฉํ ์ ์์ผ๋ ์ฐ์ต ๋ง์ด ํด๋ณด์๋๊ฑธ ์ถ์ฒ๋๋ฆฝ๋๋ค :)
๐ ๋ฌธ์ ๋งํฌ
AC
โ๏ธ ์์๋ ์๊ฐ
4์๊ฐ30๋ถ
๋ฌธ์์ด์ฒ๋ฆฌ
์ด ๋ฌธ์ ์์ ๋ฐฐ์ด์ ์์๋ค์ด [1,2,3,5] ์ด๋ฐ ํ์์ผ๋ก ์ฃผ์ด์ง๋๋ฐ ์ผ๋จ
์ด ๋ฐฐ์ด์ string ๊ฐ์ฒด๋ฅผ ํตํด ์ ๋ ฅ๋ฐ๋๋ค
๊ทธ๋ฆฌ๊ณ ๋์์ด ๋ฌธ์์ด์์ ์ซ์๋ค์ ๋ถ๋ฆฌํด ๋ด๊ธฐ ์ํด์ for๋ฃจํ๋ฌธ์
string ์ฌ์ด์ฆ
๋งํผ ๋๋ฆฌ๋ฉฐ ํ์ธํด์ค๋ค. ์ด๋ ์ซ์๊ฐ 10์์๋ฆฌ ์ด์ ์ผ ์ ์๊ธฐ๋๋ฌธ์ ๊ทธ ์๋ค์ ์ ์ฅํด๋์string๊ฐ์ฒด๋ฅผ ํ๋ ๋ ์์ฑํด์ค๋ค.
1.
"[","]"
์ ๊ฒฝ์ฐ ๊ฑด๋๋ด๋ค.2.","๊ฐ ๋์ค๊ธฐ ์ ๊น์ง ๋ฌธ์๋ค์ ์๋ก ์์ฑํ
string ๊ฐ์ฒด์ ๊ณ์ํฉ์ณ์ค๋ค.
3.
","๊ฐ ๋์ฌ๊ฒฝ์ฐ
๊ทธ์ ๊น์ง ํฉ์ณ์ง string ๋ฌธ์์ด๋ค์stoi()
๋ฅผ ํตํด ์ ์ํ์ผ๋ก ๋ณํํ๊ณ๋ฒกํฐ์ push
ํด์ค๋ค.4. ๋ง์ง๋ง ๋ฌธ์๋ , ํ์๊ฐ ์์ผ๋ฏ๋ก
์ ์ผ ๋ง์ง๋ง์ ๋ฐ๋ก ๋ฒกํฐ์ pushํด์ค๋ค
.์ฒซ๋ฒ์งธํ์ด(์๊ฐ์ด๊ณผ)
์ฒซ๋ฒ์งธํ์ด์์ Rํจ์ ๋ก์ง์ ๊ตฌํํ๊ธฐ ์ํด stl์
reverseํจ์
๋ฅผ ์ฐ๊ณ Dํจ์๋ฅผ ๊ตฌํํ๊ธฐ์ํดerase ํจ์
๋ฅผ ์จ๋ฒ๋ ธ๋๋์๊ฐ์ด๊ณผ
๊ฐ ๋ด๋ค. ๋น์ฐํ๊ฒ์ด ์์์ ๊ฐ์๊ฐ ์ญ๋ง๊ฐ๊ฐ ๋๋๋ฐ ์ด๋ฌํreverse ,erase ํจ์
๋ฅผ ์จ๋ฒ๋ฆฌ๋ฉด ์ธ๋๋ง๋ค ๋ชจ๋ ์์๋ค์ด ์๋ฆฌ์ด๋์ ํ๊ฒ๋๋ฏ๋ก์์ฒญ๋ ์๊ฐ๋ณต์ก๋
๊ฐ ๋ฐ์ํ ๊ฒ์ด๋ค.๋๋ฒ์งธํ์ด
์์ธ์ฒ๋ฆฌ
ํด์ค๊ฒ ๋๋ฌด๋ง๊ณ ๋ฌธ์์ด ์ฒ๋ฆฌ์ ์๊ฐ์ด ์์ฒญ ์ค๋๊ฑธ๋ ธ๋ค.R
์ ๋ฐฐ์ด์ ์๋ ์๋ค์ ์์๋ฅผ ์ญ์ผ๋ก ๋ค์ง๋ ํจ์D
๋ ์ฒซ๋ฒ์งธ์๋ฅผ ์ญ์ ํ๋ ํจ์์ด๋ค. ์ฃผ์ํ ์ ์๋ฐฐ์ด์ ๋น์ด์๋๋ฐ D๋ฅผ ํ ๊ฒฝ์ฐ error๋ฅผ ์ถ๋ ฅํด์ผํ๋ค.๋ํ ์ถ๋ ฅ์ผ๋ก ๋น๋ฐฐ์ด์ด ๋์ฌ๊ฒฝ์ฐ []ํ์์ผ๋ก ์ถ๋ ฅ์ํด์ค์ผํ๋ค.
๊ทธ๋์ ํํธ๋ฅผ ์ฐธ๊ณ ํ์ฌ ํ์ด๋ธ ๋๋ฒ์งธ ํ์ด๋ ๋ฒกํฐ๋ฅผ ๊ฐ๋ฆฌํค๋ ๋๊ฐ์ ์ธ๋ฑ์ค๋ฅผ ํ์ฉํ ํ์ด์ด๋ค. start_idx๋ ๋ฒกํฐ์ ์ฒซ๋ฒ์งธ์์, end_idx ๋ ๋ฒกํฐ์ ๋ง์ง๋ง ์์์ ์ธ๋ฑ์ค๋ฅผ ๊ฐ์ง๊ฒ ํ๋ค. ๊ทธ๋ฆฌ๊ณ ๋ํ
1)R์ฐ์ฐ์ด ๋ฐ์ํ ๊ฒฝ์ฐ
์๋๋ start_idx์ end_idx์ ๊ฐ์ ์๋ก ๋ฐ๊ฟ์ผํ๋๋ฐ ์๊ฐ์ ์ค์ด๊ธฐ์ํด ์ผ๋จ
r_cnt๋ฅผ ํตํด R์ ๊ฐ์๋ฅผ ์ ์ฅํด์ค๋ค.
2) D์ฐ์ฐ์ด ๋ฐ์ํ ๊ฒฝ์ฐ์๋
๋ง์ฝ ๋น๋ฐฐ์ด์ธ๊ฒฝ์ฐ
์ญ์ ํ ๊ฒ ์์ผ๋ฏ๋ก ์๋ฌ๋ฅผ ์ถ๋ ฅํ๊ณ๋ค์ ํ ์คํธ์ผ์ด์ค๋ก ๋์ด๊ฐ๋ค.
๋ง์ฝ RRRD์ฒ๋ผ R์ฐ์ฐ์ด ํ์๋ฒ ๋ฐ์ํ์์๊ฒฝ์ฐ
R์ฐ์ฐ(start_idx์ end_idx ์์น๋ฐ๊พธ๊ธฐ)๋ฅผ ํ๋ฒ ์ํํ๊ณ ๋์ด๊ฐ๋ค.(R์ฐ์ฐ์ด์ง์๋ฒ ๋ฐ์ํ๊ฒฝ์ฐ๋ ์์ํ๋ก ํ๊ทํ๊ธฐ๋๋ฌธ์ ์๋ณธ์ํ ๊ทธ๋๋ก ๋ค์๋จ๊ณ๋ก ๋์ด๊ฐ๋ค)
if(start_idx>end_idx)์ ๊ฒฝ์ฐ
์์์ธ๋ฑ์ค๊ฐ ๋ ๋ค์์์ผ๋ฏ๋กstart_idx--
๋ฅผ ํ์ฌ ์์์ธ๋ฑ์ค ์์น ์ด๋else if(start_idx<end_idx)์ ๊ฒฝ์ฐ
์ผ๋ฐ์ ์ธ๊ฒฝ์ฐ๋ก ์์์ธ๋ฑ์ค๊ฐ ์์์์ผ๋ฏ๋กstat_idx++
๋ฅผ ํ์ฌ ์์์ธ๋ฑ์ค ์์น ์ด๋else(start_idx==end_idx)
๋ง์ฝ ๋์ธ๋ฑ์ค๊ฐ ๊ฐ์๊ฒฝ์ฐ์๋ ๋ฒกํฐ์ ์์๊ฐ ํ๋์ธ ์ํ์ด๋ฏ๋ก D์ฐ์ฐ์ ํด์ค๊ฒฝ์ฐ๋น๋ฒกํฐ
๊ฐ ๋์ด๋ฒ๋ฆฐ๋ค ์ด๋ฅผ ํํํด์ฃผ๊ธฐ ์ํดend_idx=-1๋ก ์ค์
ํด์ค๋ค.์ฌ๊ธฐ์ ์๊ฐ์ด๊ณผ๋ฅผ ์ค์ผ๋ฐฉ๋ฒ์ RRRRD ์ด๋ฐ์์ผ๋ก R์ด ์ง์๊ฐ๊ฐ ๋์๋ฒ๋ฆฌ๋ฉด ๊ฒฐ๊ตญ ์์ํ๋ก ํ๊ทํ๋ฏ๋ก R์ฐ์ฐ์ ์คํํ ํ์๊ฐ ์๋ค
์ฆ R์๊ฐ์๊ฐ ํ์๊ฐ ๋์ฌ๋๋ง R์ฐ์ฐ์ ํ๋ฒ ์ํํด์ฃผ๋ฉด ๋๋ค.
๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ
์ฒ์์ ํ๋ stl ๋ด์ฅํจ์๋ฅผ ์ฌ์ฉํ์ฌ ํ์์ง๋ง
์๊ฐ์ด๊ณผ
๋ง ๊ณ์๋ฌ๋ค.์ธ๋ฑ์ค
๋ฅผ ํ์ฉํ์ฌ ์ด๋ ๊ฒ๋ฐฐ์ด์์๋ฅผ ์ด๋์ํค์ง ์๊ณ ๋ฐฐ์ด์ ์์๊ฐ ์ด๋ํ๊ฒ ์ฒ๋ผ ๋ณด์ด๋๊ฒ
๋๊ฒ ์ ๊ธฐํ ํ์ด๋ฐฉ๋ฒ ๊ฐ์๋ค.