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
- typevar
- codewars
- 규칙없음
- 유닉스의탄생
- Lint
- conf
- opensouce
- flake8
- codewar
- httppretty
- GlobalInterprintLock
- Golang
- organizeImports
- python
- maxlinelength
- 글쓰기가필요하지않은인생은없다
- springboot
- ProxyServer
- loadimpact
- 코로나백신
- goalng
- 독후감
- printer_helper
- Algorithm
- 조엘온소프트웨어
- pep8
- pyenv
- 오큘러스퀘스트2
- restfulapi
- vscode
Archives
- Today
- Total
일상적 이야기들.
codewar: Sum of Parts 본문
문제
- https://www.codewars.com/kata/5ce399e0047a45001c853c2b
문제풀이
- 주어진 배열을 순회하면서, 합을 구하는 구하는 문제입니다.
- 0 번째는 0 ~ array.length 까지의 합.
- 1 번째는 1 ~ array.length 까지의 합.
- 쭉쭉쭉 array.length-1 번째는 array.length-1 ~ array.length까지의 합.
- 이렇게 구하는데, 순차적으로 구하게 될 시에는 이중 for문을 사용하게 되므로, O(N^2)의 시간 복잡도가 됩니다. 그렇기에 이렇게 풀어서 제출을 하게 되면, Timeout 으로 fail이 나게 됩니다.
- 뒤집어서 계산을 하여 넣게 된다면 for문 한번만 수행하게 되면 되므로, O(N)의 시간복잡도로 계산이 됩니다.
class SumParts {
public static int[] sumParts(int[] ls) {
// your code
int[] result = new int[ls.length+1];
result[ls.length] = 0;
for(int i=ls.length-1; i>=0; --i) {
result[i] += ls[i] + result[i+1];
}
return result;
}
}
'프로그래밍 > 알고리즘 문제풀이' 카테고리의 다른 글
codewar: Find the odd int (0) | 2019.07.16 |
---|---|
codewars: Counting Duplicates (0) | 2019.07.04 |
codewar: Convert a String to Number! (0) | 2019.07.02 |
codewar: Where is THB? (0) | 2019.07.02 |
codewar: Remove First and Last Character (0) | 2019.06.25 |
Comments