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
- Reverse Shuffle Merge
- 피보나치 함수
- 알고리즘
- hackerrank
- 격파르타 후기
- Algorithm
- DFS: Connected Cell in a Grid
- Recursion: Davis' Staircase
- python
- candies
- 프로그래머스
- 격파르타 합격후기
- Max Array Sum
- 매칭점수
- Common Child
- programmers
- 파이썬
- Special String Again
- Find the nearest clone
- BFS: Shortest Reach in a Graph
- Interview Preparation Kit
- 구슬탈출2
- Roads and Libraries
- 백준
- 코딩테스트
- [sqld]자격증합격
- 머신러닝
- 격파르타 장점
- 해커랭크
- 야근지수
Archives
- Today
- Total
목록Merge Sort: Counting Inversions (1)
Archive
[Hackerrank] [Hard] Merge Sort: Counting Inversions
https://www.hackerrank.com/challenges/ctci-merge-sort/problem Merge Sort: Counting Inversions | HackerRank How many shifts will it take to Merge Sort an array? www.hackerrank.com 풀이 예제처럼 bubble sort로 구현하면 timeout 발생 merge sort로 구현해도 timeout 발생함 merge 부분에서 list의 append함수를 지역 변수로 사용하는게 빠름. 필요한 정보들( len(list) 등)을 미리 변수에 할당하고 사용하는게 빠름. 가운데 index를 계산해 둘 씩 나누다가, 합칠 때 inversion 경우를 count함. i < j 일 때, a..
공부/Algorithm
2020. 8. 25. 14:19