-
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
3-H0ngJu #156
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.
์ ๋ ์ฒ์์ ๋ฉ๋ชจ๋ฆฌ๊ฐ ์ด๊ณผ๋ ๊ฒ์ ์๊ณ ์์์ง๋ง,
'ํน์๋ ๋์จํ ํ ์คํธ ์ผ์ด์ค๋ก ์ธํด ํต๊ณผ๋ ๊น?' ๋ผ๋ ์คํ ์ ์ ์ผ๋ก ์ํ์ผ๋ก ์ ์ถํด๋ดค์ด์.
(๋ง์ฝ ํต๊ณผ๋๋ฉด ๋ฌธ์ ๊ฐ ์ํ๋ ๋ฐ๊ฐ ์๋ ๊ฒ ๊ฐ๋ค๋ ์๊ฐ์ด ๋ค์ด์ ํ ์คํธ ์ผ์ด์ค ์ถ๊ฐ๋ฅผ ์์ฒญํ๋ ค๊ณ ..)
import sys
def input(): return sys.stdin.readline().rstrip()
N = int(input())
numbers = []
for _ in range(N):
numbers.extend(map(int,input().split()))
print(sorted(numbers, reverse = True)[N-1])
์ญ์๋ ๋ฉ๋ชจ๋ฆฌ ์ด๊ณผ๊ฐ ๋๋๊ตฐ์.
225๋ง๊ฐ์ ์ ์ํ ๋ฐ์ดํฐ๋ฅผ ๋ชจ๋ ์ ์ฅํ๊ธฐ์๋ 12MB๋ก๋ ํฐ๋ฌด๋๊ฐ ์๊ธฐ ๋๋ฌธ์ด์ฃ ...
intํ์ด ๋๋ถ๋ถ 4๋ฐ์ดํธ์ธ๋ฐ ํ์ด์ฌ์ ๋ ๋ง์ ๋ฐ์ดํธ๋ฅผ ์๋ชจํ๋๊น.. ๋์ถฉ ๊ณ์ผํด๋ณด๋ฉด ์ด๊ณผ๊ฐ ๋๋ค๋ ๊ฒ์ ์ ์ ์์์ด์.
๊ทธ๋ผ ๋๋์ฒด ์ด๋ป๊ฒ ํ๋ฉด ์ข์๊น ๊ณฐ๊ณฐํ ์๊ฐํด๋ดค๋๋ฐ,
๊ฒฐ๊ตญ์๋ N๋ฒ์งธ ํฐ ์๋ฅผ ์ฐพ๋ ๊ฒ์ด๋ฏ๋ก N๊ฐ์ ๋ฐ์ดํฐ๋ง ์ ์ฅํ๋ฉด ๋ ๊ฒ ๊ฐ๋ค๋ ์๊ฐ์ด ๋ค์์ด์.
์ต๊ทผ์ ํ์ฃผ๋์ด ์ ์ถํ์
จ๋ deque
๋ก ์ด์ฉํ๋ ๋ฒํผ(?) ํน์ ์ฌ๋ผ์ด๋ฉ ์๋์ฐ ๋ฐฉ์์ ๋์
ํ๋,
์ด๋ค ์๋ฃ๊ตฌ์กฐ๊ฐ ๊ฐ์ฅ ์ ์ ํ ๊น? ๋ฅผ ๊ณ ๋ฏผํด๋ณด๋๊น,
heap์ด ๋ฐ๋ก ๋ ์ฌ๋ผ์ heap์ผ๋ก ๊ตฌํํ๋๋ ๋ฐ๋ก ํต๊ณผ๋์์๋๋ค!
import sys
from heapq import *
def input(): return sys.stdin.readline().rstrip()
N = int(input())
board = []
for _ in range(N):
temp = list(map(lambda x : -1*int(x),input().split()))
heapify(temp)
# board๊ฐ ๋น์ด์์ ๊ฒฝ์ฐ
if not board:
board.extend(map(lambda x : -1*x, temp))
heapify(board)
else:
while -1*temp[0] > board[0]:
heappop(board)
heappush(board, -1*heappop(temp))
# print(board)
print(board[0])
for i in range(line): | ||
data = list(map(int, sys.stdin.readline().strip().split())) | ||
for s in data: | ||
if len(heap) < line: | ||
heapq.heappush(heap, s) | ||
else: | ||
if s > heap[0]: | ||
heapq.heappop(heap) | ||
heapq.heappush(heap, s) |
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.
์ง๊ธ์ ๋ญ ํ๋ก์ ํธ๋ ์๋์ง๋ง i
๋ผ๋ ๋ณ์๋ช
ํ๊ณ s
๋ผ๋ ๋ณ์๋ช
์ ์ง์ํ๋ ๊ฒ ์ข์ ๊ฒ ๊ฐ์์!
์ฝ๋ ๋ฆฌ๋ทฐ๋ฅผ ๋ฐ๋ ์์คํ ์ด๋ค ๋ณด๋๊น...
PSํ ๋ ํด๋ฆฐ ์ฝ๋๋ ์ค๋ฒ ์์ง๋์ด๋ง์ด๊ธด ํ์ง๋ง,
์์ฆ์ ์ฝ๋๊ฐ ๊ธธ์ด์ง๋ ๊ตฌํ ๋ฌธ์ ๋ ๋ง์ด ๋์ค๊ธฐ ๋๋ฌธ์ ๋๋ฌด ๋ง์ ์๊ฐ์ ๋ค์ด์ง๋ ๋ง๊ณ ์ต์ํ์ ๋ ธ๋ ฅ(?) ์ ๋๋ ํด์ฃผ๋ฉด ์ข๋ค๊ณ ์๊ฐํฉ๋๋ค!
๊ทธ๋ฆฌ๊ณ ์ง๊ธ์ ์๊ฐ ์ ํ์ด ์๋ ์ํ๋ ์๋๊ธฐ์ ์ด๋ฐ ํด๋ฆฐ ์ฝ๋๋ฅผ ์ฒดํ ์ํค๊ธฐ์๋ ์ข์ ๊ฒ ๊ฐ๋ค๊ณ ์๊ฐ์ด ๋์ด์์!
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.
์ค์ค ์ข์ ๋ฆฌ๋ทฐ ๊ฐ์ฌํฉ๋๋ค (_ _)
์๋ง ์ ๋น์์๋ i๋ ๋จ์ ๋ฐ๋ณต๋ฌธ์ ์ํ ๋ณ์, s๋ ๋จ์ํ ์์๋ฅผ data์์ ๊บผ๋ด์จ๋ค๊ณ ์๊ฐํด์ ์ผ๋ ๊ฒ ๊ฐ๋ค์ฉ
ํผ๋๋ฐฑ์ ๋ฐ์ํ๋ฉด, for _ in range(line):๊ณผ for num in data:๋ก ๊ฐ๊ฐ i์ s๋ฅผ ์์ ํ ์ ์๊ฒ ๋ค์!
line = int(sys.stdin.readline().strip()) | ||
|
||
heap = [] | ||
heapq.heapify(heap) |
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.
์ด ํจ์๋ ์ฌ๊ธฐ์์ ํธ์ถ์ํ์
๋ ๋ผ์
heap ๋ฆฌ์คํธ ์์ ํธ๋ฆฌ๋ฅผ ์ฌ ๊ตฌ์ฑํ๋๊ฑฐ๋ผ ๋น์ด์์ ๋๋ ๋ถํ์ํ ํธ์ถ์ด๋๋๋ค
ํ๋ฌ ์ ์ ๋ฉ๋ชจ๋ฆฌ ์ด๊ณผ๋๋ฌธ์ ํธ๋ ๋ฐ ์๊ฐ์ด ์ข ๊ฑธ๋ ธ๋ ๋ฌธ์ ๋ค์. ์ฒ์์ ๋ฐ์ ์ฒ๋ผ ๋ฆฌ์คํธ์ ์์๋ฅผ ์ ๋ถ๋ค ๋ฃ๊ณ ์ด๋ ๊ฒ ํ๋๊น ๋ฉ๋ชจ๋ฆฌ๊ฐ ํฐ์ง๋๋ผ๊ตฌ์. for _ in range(N):
heap.extend(map(lambda v: -int(v), stdin.readline().split()))
heapify(heap)
for _ in range(N - 1):
heappop(heap)
print(-heappop(heap)) ๋จ์ ์ ๋ ฌ์ ํ๋ ๊ฒ ๋ฟ์ธ๋ฐ ๋ค์ ๋ณด๋ ์ ๋ง ์ด์ํ ์ฝ๋๋ค์ ์ด๋ป๊ฒ ๊ณ ์ณ์ผํ๋ ๊ณ ๋ฏผํด๋ณด๋ ์ ๋ถ๋ค ๋ฆฌ์คํธ์ ๋ฃ๊ณ ์ต๋ ํ์ผ๋ก ๋ง๋ค ํ์์์ด ์๋ฅผ ๋ค์ด
์ข ๊ธธ์ด์ง๊ธด ํ๋๋ฐ ์ ์ฝ๋๊ฐ ํ์ฃผ๋ ์ฝ๋๋ ๊ฑฐ์ ๋๊ฐ๋ค์ N = int(stdin.readline())
heap = []
for _ in range(N):
for v in map(int, stdin.readline().split()):
if len(heap) < N:
heappush(heap, v)
elif v >= heap[0]:
heappush(heap, v)
heappop(heap)
print(heap[0]) |
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int N;
cin >> N;
vector<int> v(N * N);
for (int &num: v) {
cin >> num;
}
sort(v.rbegin(), v.rend());
cout << v[N - 1];
return 0;
} ๋ ์์น C++๋ ๋๋ค์ |
#include <iostream>
#include <queue>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int N;
cin >> N;
priority_queue<int, vector<int>, greater<>> pq;
for (int i = 0; i < N; i++) {
int num;
cin >> num;
pq.emplace(num);
}
for (int i = 0; i < N * (N - 1); i++) {
int num;
cin >> num;
pq.emplace(num);
pq.pop();
}
cout << pq.top();
return 0;
} ์์ธํ ๋ด์ฉ์ ๋ฆฌ๋ทฐ๋ก ๋ฌ์๋๊ฒ ์ต๋๋ค. |
if s > heap[0]: | ||
heapq.heappop(heap) | ||
heapq.heappush(heap, s) |
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.
๊ฒฐ๊ตญ ํ ์์ฒด๊ฐ ํฌ๊ธฐ ๋น๊ต๋ฅผ ์ํ ์๋ฃ๊ตฌ์กฐ์ด๊ธฐ ๋๋ฌธ์, ์กฐ๊ฑด๋ฌธ์ ๋ฌ์๋์ ํ์ ์์ด ๋ฐ๋ก push ํ popํ๋ฉด ๋ฉ๋๋ค!
heapq.heappush(heap, s)
heapq.heappop(heap)
heappushpop()
์ ์ฌ์ฉํ๋ฉด ํ ์ค๋ก๋ ๋๊ตฌ์.
๐ ๋ฌธ์ ๋งํฌ
N๋ฒ์งธ ํฐ ์
โ๏ธ ์์๋ ์๊ฐ
30-40๋ถ
โจ ์๋ ์ฝ๋
์ด ๋ฌธ์ ๋ ๋ฐฐ์ด์ ์ฒ์๋ถํฐ ๋๊น์ง ์ ๋ ฌํด์ arr[line] ํน์ arr[len(arr)-line]์ผ๋ก ๋ต์ ๊ตฌํ ์ ์์ง๋ง, ๋ฉ๋ชจ๋ฆฌ ์ด๊ณผ๋ก ํต๊ณผ๋ ์๋ฉ๋๋ค..!
๊ทธ๋์ heap์ ํตํด ํ์์ต๋๋ค.
์ฒ์์๋ ์๋ ์ฝ๋์ ๊ฐ์ด, ํ์ผ๋ก ํ์๋๋ฐ๋ ๋ฉ๋ชจ๋ฆฌ ์ด๊ณผ๊ฐ ๋ฌ์ต๋๋ค ใ
๊ทธ๋์ ๋ชจ๋ ์์(line*line)๋ฅผ ์ ์ฅํ๋ ๋ฐฐ์ด array์ ๋ฌธ์ ๋ผ๊ณ ๋ณด๊ณ , ๋ฐฐ์ด์ ์ ์ฅ์ ํ ์ค์ฉ๋ง ํ๋๋ก for๋ฌธ ์์ผ๋ก ๋ฃ์๋๋ ํต๊ณผ๊ฐ ๋์์ต๋๋ค -!
๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ
a. ์ผ์ชฝ ์์ = (๋ถ๋ชจ index) * 2
b. ์ค๋ฅธ์ชฝ ์์ = (๋ถ๋ชจ index) * 2 + 1
c. ๋ถ๋ชจ index = (์์ index) / 2