-
Notifications
You must be signed in to change notification settings - Fork 2
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
6-H0ngJu #164
Conversation
arr = list(map(int, input().split())) | ||
arr.reverse() |
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.
arr
์ ๋ค์ง๊ฑฐ๋ pop()
ํด์ ์ง์ฐ๋ ์์ผ๋ก arr
์ ํฌ๊ฒ ๊ฑด๋๋ฆฌ์ง ์์๋ ๋ผ์
stack
์์ ์์๋ฅผ ๊บผ๋ด์ answer
์ ์คํฐ์๋ฅผ ๋ฃ์ด์ฃผ๋ ์ํฉ์์๋,
์คํ์ ์๋ ์์์ ์ธ๋ฑ์ค๊ฐ ํ์ฌ ์ํ์ค์ธ arr
์ ์์ ์ธ๋ฑ์ค๋ณด๋ค ํญ์ ์์ ์์ด์
๊ทธ๋์ arr
์ ๊ฑด๋๋ฆฌ์ง ์๊ณ , ์์๋๋ก ์ํํ๋ฉด์ ์ธ๋ฑ์ค๋ง ์คํ์ ๋ฃ์ด์ฃผ๋ฉด์ ์งํํ๋ฉด ๋ผ์
arr
์ ์์๋๋ก ์ํํฉ๋๋ค- ํ์ฌ ์์๊ฐ ์คํ์ ์๋ ์์๋ณด๋ค ํฌ๋ฉด, ๊ทธ ์์์ ์คํฐ์๋ก ์ค์ ํด์ค๋๋ค
- ์คํ์ด ๋น๊ฑฐ๋ ํ์ฌ ์์๋ณด๋ค ํฐ ์์๋ฅผ ๋ง๋ ๋๊น์ง ์ด๊ฑธ ๊ณ์ํฉ๋๋ค
- ํ์ฌ ์์์ ์ธ๋ฑ์ค๋ฅผ ์คํ์ ๋ฃ์ต๋๋ค
์ด๋ ๊ฒ ํ๋ฉด, arr
์ ๋ฐ๋ก ๊ฑด๋๋ฆฌ์ง ์๊ณ , ํ ๋ฒ๋ง ๋ด๋ ๋ชจ๋ ์คํฐ์๋ฅผ ์ฐพ์ ์ ์์ด์
๋ฉ๋ชจ๋ฆฌ๋ ๋ฐ๋ก ํํ์ ์์ฑํ๋ฉด์ ์งํํ์ง ์์ผ๋ ๋ง์ด ์ค์ด๋ค์ด์
N = int(input())
A = list(map(int, input().split()))
stack = deque()
result = [-1] * N
for i in range(N):
while stack and A[stack[-1]] < A[i]:
result[stack.pop()] = A[i]
stack.append(i)
print(*result)
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.
์ฌ์ค ๋ด๋ถ ๊ตฌํ๋ง ๋ค๋ฅผ ๋ฟ,
ํฐ ๊ตฌ์กฐ๋ ๊ฐ์ ๊ฑฐ๋ผ๊ณ ์๊ฐ์ด ๋ฉ๋๋ค.
total_numbers_count = int(input())
numbers = list(map(int,input().split()))
answer = [-1 for _ in range(total_numbers_count)]
temp = []
for idx, i in enumerate(range(len(numbers))):
now = numbers[i]
while temp:
if temp[-1][1] < now:
temp2 = temp.pop()
answer[temp2[0]] = now
else:
break
temp.append([idx,now])
print(*answer)
์ด ๋ฌธ์ ์ ๋ง ์๋ฃ๊ตฌ์กฐ์ ๋ํด ์ ์๊ณ ์๋๋๋ฅผ ๋ฌผ์ด๋ณด๋ ๋ฌธ์ ์ธ ๊ฒ ๊ฐ์์.
์ด ๋ฌธ์ ๊ธฐ์ตํด๋์ จ๋ค๊ฐ, ๋์ค์ ์๋ฃ๊ตฌ์กฐ ์ต์ํด์ง์๋ฉด ๋ค์ ํ์ด๋ณด๋ ๊ฒ์ ์ถ์ฒ๋๋ฆฝ๋๋ค!!!
#include <iostream>
#include <vector>
#include <stack>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int N;
cin >> N;
vector<int> A(N), answer(N, -1);
for (int &num: A) {
cin >> num;
}
stack<int> st;
for (int i = N - 1; i >= 0; i--) {
while (!st.empty() && st.top() <= A[i]) {
st.pop();
}
if (!st.empty()) {
answer[i] = st.top();
}
st.emplace(A[i]);
}
for (int num: answer) {
cout << num << ' ';
}
return 0;
} ๊ณ ์ํ์ จ์ต๋๋ค. ์ ๊ฐ ๊ฑฐ์น ์ฌ๊ณ ๋ฐฉ์์ ์์์๋ถํฐ ์ฒ๋ฆฌํ๋ฉด ๋์๊ฐ ๊ฐ์น์ ์ํฅ์ ๋ฏธ์น์ง ์๋๋ค -> ๋ค์์๋ถํฐ ์ฒ๋ฆฌํ๋ฉด ์ด๋ฅธ ์ซ์๊ฐ ๋ ํด ๊ฒฝ์ฐ ๋ ๊ฐ์น๊ฐ ๋๋ค -> ์คํ์ ์ฌ์ฉํ์ฌ ์๊ฐ๋ณต์ก๋ ์ค์ด๊ธฐ ์ด๋ ๊ฒ ํ์์ด์. |
๐ ๋ฌธ์ ๋งํฌ
์คํฐ์
โ๏ธ ์์๋ ์๊ฐ
2์๊ฐ
โจ ์๋ ์ฝ๋
์ผ๋จ, ์ฒ์์๋ ๋ฌธ์ ์์ ์๊ตฌํ๋ ๋ฐ๋ฅผ ๋ฐ๋ผ๊ฐ๋ฉด์ ์ฝ๋๋ฅผ ์์ฑํ์๋ค.
์ด ์ฝ๋์ ๋ฌธ์ ์ ์ N์ด 1000000์ด๊ณ , ์๊ฐ ๋ณต์ก๋๊ฐ O(N^2)์ด๋ฏ๋ก ์๊ฐ ์ด๊ณผ ๋ฐ์ํ๋ค๋ ๊ฒ์ด๋ค.
์ ํ ์๊ฐ ๋ด์ ํต๊ณผํ๊ธฐ ์ํด์๋ O(N logN)์ด๋ O(log N)์ด์ฌ์ผ ๊ฐ๋ฅํ๋ฐ,
์๊ฐ ๋ณต์ก๋๋ฅผ ์ค์ด๊ธฐ์ํด์๋ while ์์ for๋ฌธ ๋ก์ง์ ๋ค๋ฅธ ๋ฐฉ์์ผ๋ก ๊ตฌํํด์ผ ํ๋ค๊ณ ์๊ฐํ๋ค.
๊ทธ๋ฐ๋ฐ .. ์๋ฌด๋ฆฌ ์๊ฐํด๋ด๋ ์ผ์ชฝ์ ์๋ ์์๋ค์ ํ๋์ฉ ๋น๊ตํ๋ ์๊ฐ O(N^2)์ด ๋์ด๋ฒ๋ฆฌ๊ณ ,
๊ทธ๋ ๋ค๊ณ binary search๋ฅผ ํ์๋, '์ค๋ฆ์ฐจ์ ์ ๋ ฌ์ด ์๋ ์ ', '์ค๋ฆ์ฐจ์ ์ ๋ ฌํ ๋ฐฐ์ด์ ์ถ๊ฐ ์์ฑํ๋ค๊ณ ํ๋๋ผ๋ ๊ฐ์ ๊ฐ ๋ค๋ฅธ ์์์ ๋ํด์ ๋น๊ต๊ฐ ๋ถ๊ฐ๋ฅํ๋ค๋ ์ '์ ํด๊ฒฐํ ์ ์์ด์ ์ด๋ถํ์๋ ์๋๋ผ๊ณ ์๊ฐํ๋ค.
๊ฒฐ๊ตญ ์๊ฐ ์ด๊ณผ๋ฅผ ํด๊ฒฐํ ๋ฐฉ๋ฒ์ ์๊ฐํ์ง ๋ชปํด์ ๋ค๋ฅธ ํ์ด๋ฅผ ์ฐธ๊ณ ํ๋ค.
์ด ๋ฌธ์ ์์ ์ฌ์ฉํ๋ ์๋ฃ๊ตฌ์กฐ๋ '์คํ'์ด๋ค.
ํต์ฌ ์์ด๋์ด๋ ๋ค์๊ณผ ๊ฐ๋ค.
์ ๊ฐ ์ฐธ๊ณ ํ ๋ธ๋ก๊ทธ๋ฅผ ์ฒจ๋ถํฉ๋๋ค
๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ
์ด ์ ๋์ผ์ค์ ๋ชฐ๋์)์ง๊ธ ๋ค์ ์๊ฐํด๋ด๋ ์ด๋์ ์คํ์ ๋ ์ฌ๋ ค์ผ ํ๋์ง ์๋ฌธ ....... (์๋ฌธ์ ํด๊ฒฐํ๋ฉด ์๊ฒ๋ ๋ด์ฉ์ ์ถ๊ฐ ์์ )