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
- boj 1074
- dp
- boj 1717
- the maximum subarray
- boj 6443
- 지게차와 크레인
- 브루트포스
- DirectX12
- lock based stack
- DirectX
- pcce 기출문제 풀이
- 프로그래밍공부
- c++
- special string again
- lock free stack
- two characters
- pccp 기출문제 풀이
- count triplets
- LCS
- making anagrams
- lock based queue
- find the town judge
- find the running median
- boj 11657
- the longest increasing subsequence
- 2025 프로그래머스 코딩챌린지 1차예선
- gas
- string construction
- PCCE
- ice cream parlor
Archives
- Today
- Total
목록2751번 (1)
오구의코딩모험

문제 3줄 요약 1. N개의 수를 오름차순으로 출력한다. 2. 수는 중복되지 않는다. 3. 왼쪽 문제는 N이 1000이하, 오른쪽 문제는 N이 100만 이하이다. 같은 기능을 하는 문제지만, Input으로 들어올 수 있는 사이즈가 다른 문제였다. 두 문제 모두 python 리스트의 sort로 푼 코드들이 있는 것 같다. python sort 함수 Timsort라는 정렬 알고리즘을 사용하는데 Quicksort와 같이 평균 시간 복잡도가 O(NlogN) 이지만, 최악의 경우는 더 빠른 O(NlogN) 이라고 합니다. https://realpython.com/sorting-algorithms-python/#the-timsort-algorithm-in-python Sorting Algorithms in Pyth..
프로그래밍 공부/백준 알고리즘
2023. 2. 25. 16:58