Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 백준
- 파이썬 map 함수
- 파이썬
- 코딩부트캠프후기
- 파이썬 |
- EnvCommandError
- vscode cp949
- not a git repository
- 항해플러스
- 주니어개발자멘토링
- 개발자스터디
- 항해
- 99클럽
- 코딩테스트
- 파이썬 클래스
- 주니어개발자역량강화
- print("""
- 개발자사이드프로젝트
- 파이썬 sep
- print sep
- MomentumParameters
- 99일지
- 99클럽 #99일지 #코딩테스트 #개발자스터디 #항해 #til
- Fatal Python error: init_fs_encoding: failed to get the Python codec of the filesystem encoding
- 항해99
- fatal:not a git repository
- Til
- cp949
- 파이썬 int()
- 10430번
Archives
- Today
- Total
선발대
[스파르타] 99클럽 2기 코테스터디 38일차 TIL / leet 921 본문
Leetcode: 1845. Seat Reservation Manager (링크)
문제 설명
힙 자료구조를 사용할 수 있는지 확인하는 간단한 문제다.
처음에 문제를 잘못 이해해서 output으로 배열을 출력해야 하는 줄 알고, 왜 정답 처리가 안되는지 잠깐 헤맸었다.
근데 다시 읽어보니 그냥 reverse, unreverse 함수에서만 return 값을 설정해 주면 된다.
풀이 설명
파이썬 heapq 라이브러리의 사용법을 알고 있다면 쉽게 풀 수 있다. (import heapq)
- heapq.heappush(heap, item) : heap에 item을 추가함
- heapq.heappop(heap) : heap의 가장 작은 원소를 pop한 뒤 리턴함. 빈 값이라면 IndexError 호출됨.
- heapq.heapify(x) : 리스트 x를 heap으로 변환
class SeatManager:
def __init__(self, n: int):
self.heap = list(range(1, n+1))
heapq.heapify(self.heap)
def reserve(self) -> int:
return heapq.heappop(self.heap)
def unreserve(self, seatNumber: int) -> None:
return heapq.heappush(self.heap, seatNumber)
# Your SeatManager object will be instantiated and called as such:
# obj = SeatManager(n)
# param_1 = obj.reserve()
# obj.unreserve(seatNumber)
'스파르타코딩클럽 > 활동 내용' 카테고리의 다른 글
[스파르타] 99클럽 2기 코테스터디 39일차 TIL / leet 1338 (0) | 2024.06.27 |
---|---|
[스파르타] 99클럽 2기 코테스터디 37일차 TIL / leet 921 (0) | 2024.06.25 |
[스파르타] 99클럽 2기 코테스터디 36일차 TIL / leet 2390 (0) | 2024.06.24 |
[스파르타] 99클럽 2기 코테스터디 35일차 TIL / leet 341 (0) | 2024.06.23 |
[스파르타] 99클럽 2기 코테스터디 34일차 TIL / leet 1823 (0) | 2024.06.22 |
Comments