티스토리 뷰
Problem
Given an integer n, return an array ans of length n + 1 such that for each i (0 <= i <= n), ans[i] is the number of 1's in the binary representation of i.
Example 1:
Input: n = 2
Output: [0,1,1]
Explanation:
0 --> 0
1 --> 1
2 --> 10
Example 2:
Input: n = 5
Output: [0,1,1,2,1,2]
Explanation:
0 --> 0
1 --> 1
2 --> 10
3 --> 11
4 --> 100
5 --> 101
Constraints:
- 0 <= n <= 10^5
Follow up:
It is very easy to come up with a solution with a runtime of O(n log n). Can you do it in linear time O(n) and possibly in a single pass?
Can you do it without using any built-in function (i.e., like __builtin_popcount in C++)?
Solution
정수 n이 주어졌을 때 0부터 n까지 2진수로 나타냈을 때 1의 개수를 배열로 반환하는 문제입니다.
public class Solution {
public int[] countBits(int num) {
int[] result = new int[num + 1];
int p = 1;
int pow = 1;
for (int i = 1; i <= num; i++) {
if (i == pow) { // (1)
result[i] = 1;
pow *= 2;
p = 1;
} else { // (2)
result[i] = result[p++] + 1;
}
}
return result;
}
}
- 2의 제곱일 떄 1의 개수는 항상 1입니다. 2의 제곱을 저장하는 변수를 2로 곱해주고 2의 제곱 이후 얼마나 떨어져있는지를 나타내는 변수 p를 초기화시켜 줍니다.
- 2의 제곱이 아닐 때 p에 저장된 값보다 1의 개수가 한 개 더 많습니다. 결과에 저장한 뒤 p의 위치를 1만큼 앞으로 이동시킵니다.
Test
package io.lcalmsky.leetcode.counting_bits;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
import org.junit.jupiter.api.Test;
class SolutionTest {
@Test
void givenNumber_whenFindNumberOfOnesInBinary_thenCorrect() {
assertAll(
() -> test(2, new int[]{0, 1, 1}),
() -> test(5, new int[]{0, 1, 1, 2, 1, 2})
);
}
private void test(int given, int[] expected) {
// when
Solution countingBits = new Solution();
int[] actual = countingBits.countBits(given);
// expected
assertArrayEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
740. Delete and Earn (0) | 2022.03.12 |
---|---|
392. Is Subsequence (0) | 2022.03.11 |
228. Summary Ranges (0) | 2022.03.05 |
24. Swap Nodes in Pairs (0) | 2022.03.04 |
662. Maximum Width of Binary Tree (0) | 2022.03.03 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 스프링부트
- 스프링 부트
- 스프링 부트 회원 가입
- spring boot application
- 클린 아키텍처
- QueryDSL
- 알고리즘
- Spring Data JPA
- Linux
- 스프링 부트 애플리케이션
- 헥사고날 아키텍처
- Spring Boot JPA
- spring boot jwt
- 함께 자라기
- 스프링 부트 튜토리얼
- @ManyToOne
- intellij
- proto3
- leetcode
- gRPC
- JPA
- 스프링 데이터 jpa
- 함께 자라기 후기
- Java
- Spring Boot
- spring boot app
- JSON
- Spring Boot Tutorial
- r
- Jackson
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함