반응형
이런 풀이 외우자.
문제
수빈이는 동생에게 "가운데를 말해요" 게임을 가르쳐주고 있다. 수빈이가 정수를 하나씩 외칠때마다 동생은 지금까지 수빈이가 말한 수 중에서 중간값을 말해야 한다. 만약, 그동안 수빈이가 외친 수의 개수가 짝수개라면 중간에 있는 두 수 중에서 작은 수를 말해야 한다.
예를 들어 수빈이가 동생에게 1, 5, 2, 10, -99, 7, 5를 순서대로 외쳤다고 하면, 동생은 1, 1, 2, 2, 2, 2, 5를 차례대로 말해야 한다. 수빈이가 외치는 수가 주어졌을 때, 동생이 말해야 하는 수를 구하는 프로그램을 작성하시오.
입력
첫째 줄에는 수빈이가 외치는 정수의 개수 N이 주어진다. N은 1보다 크거나 같고, 100,000보다 작거나 같은 자연수이다. 그 다음 N줄에 걸쳐서 수빈이가 외치는 정수가 차례대로 주어진다. 정수는 -10,000보다 크거나 같고, 10,000보다 작거나 같다.
출력
한 줄에 하나씩 N줄에 걸쳐 수빈이의 동생이 말해야하는 수를 순서대로 출력한다.
구현
import collections
import copy
import heapq
import sys
input = sys.stdin.readline
def iinput(): return int(input())
def lisinput(): return list(map(int, input().split()))
def minput(): return map(int, input().split())
def liinput(): return list(map(int, list(input())))
def dq(): return collections.deque([])
def popl(a): return a.popleft()
def appendl(a, b):
a.appendleft(b)
return a
move = [
[-1, 0], # 왼
[0, -1], # 아래
[1, 0], # 오른쪽
[0, 1], # 위
]
def in_r(x, N):
return (0 <= x[0] and x[0] < N and 0 <= x[1] and x[1] < N)
def in_rc(x, r, c):
return (0 <= x[0] and x[0] < r and 0 <= x[1] and x[1] < c)
def addNode(A, B):
return [A[0] + B[0], A[1] + B[1]]
def add(A, value, maps):
maps[A[0]][A[1]] += value
return maps
def value(A, maps):
return maps[A[0]][A[1]]
def dpcopy(m):
return copy.deepcopy(m)
def sec_to_time(sec):
h = sec // 3600
m = (sec % 3600) // 60
s = sec % 60
ans = []
if h < 10:
ans.append(0)
ans.append(h)
ans.append(':')
if m < 10:
ans.append(0)
ans.append(m)
ans.append(':')
if s < 10:
ans.append(0)
ans.append(s)
string = ''.join(list(map(str, ans)))
return string
def time_to_sec(play_time):
h, m, s = map(int, play_time.split(":"))
sec = 3600 * h + 60 * m + s
return sec
def split2times(log):
s, e = log.split("-")
return (time_to_sec(s), time_to_sec(e))
# 항상 시간은 min(끝난 시간들) - max(시작 시간들 )
def lis(arr, maxi):
if not arr:
return 0
ret = 1
for i in range(len(arr)):
if arr[i] >= maxi:
continue
nxt = []
for j in range(i + 1, len(arr)):
if arr[j] >= maxi:
continue
if arr[i] < arr[j]:
nxt.append(arr[j])
mini = 1 + lis(nxt, maxi)
if ret < mini:
ret = mini
return ret
if __name__ == '__main__':
n = iinput()
maxMaps = []
minMaps = []
for i in range(n):
a = iinput()
if len(minMaps) == len(maxMaps):
heapq.heappush(maxMaps, (-a, a))
else:
heapq.heappush(minMaps, (a, a))
while len(minMaps) > 0 and len(maxMaps) > 0 and maxMaps[0][1] > minMaps[0][1]:
a, a = heapq.heappop(minMaps)
b, c = heapq.heappop(maxMaps)
heapq.heappush(minMaps, (c, c))
heapq.heappush(maxMaps, (-a, a))
print(maxMaps[0][1])
반응형
'알고리즘' 카테고리의 다른 글
백준 2357번 최솟값과 최댓값 골드1 세그먼트 트리 wip (0) | 2021.02.15 |
---|---|
백준 2170번 선 긋기 파이썬 - 스위핑 알고리즘 1차원 (0) | 2021.02.15 |
프로그래머스 가장 먼 노드 (0) | 2021.02.10 |
유니온 파인드 (0) | 2021.02.08 |
백준 15685번 드래곤커브 파이썬 삼성 골드4 (0) | 2021.02.08 |