티스토리 뷰
Algorithm/LeetCode
[LeetCode - Daily Challenge] 633. Sum of Square Numbers
Jaime.Lee 2021. 8. 26. 10:30Problem
Given a non-negative integer c, decide whether there are two integers a and b such that a^2 + b^2 = c.
Example 1:
Input: c = 5
Output: true
Explanation: 1 * 1 + 2 * 2 = 5
Example 2:
Input: c = 3
Output: false
Example 3:
Input: c = 4
Output: true
Example 4:
Input: c = 2
Output: true
Example 5:
Input: c = 1
Output: true
Constraints:
0 <= c <= 2^31 - 1
Solution
정수 c가 주어졌을 때 c가 두 수의 제곱의 합으로 이루어져있는지 판단하는 문제입니다.
c에 루트를 씌운 뒤 소숫점을 버린 정수는 c를 구성할 수 있는 가장 큰 수의 제곱근이 됩니다.
예를 들어, c가 20이라면 20의 제곱근의 값은 4.xx가 되고, 이 때 소숫점을 버린 4가 c를 구성할 수 있는 가장 큰 제곱근 입니다. (5부터는 제곱하면 20을 벗어나기 때문)
따라서 0부터 c의 제곱근까지 범위를 탐색하면서 각 수를 제곱해 합을 구하면 되는데 앞에서부터 하면 비효율적이므로 포인터를 양 끝에 두고 탐색하여 합이 c가 되면 true를, 모든 조합을 다 찾았는데 합이 c가 되지 않으면 false를 반환하면 됩니다.
public class Solution {
public boolean judgeSquareSum(int c) {
int left = 0, right = (int) Math.sqrt(c);
while (left <= right) {
int sum = left * left + right * right;
if (sum == c) {
return true;
}
if (sum < c) {
left++;
} else {
right--;
}
}
return false;
}
}
Test
package io.lcalmsky.leetcode.sum_of_square_numbers;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertEquals;
class SolutionTest {
@Test
public void givenNonNegativeInteger_whenDecideSumOfSquareNumbers_thenCorrect() {
assertAll(
() -> test(5, true),
() -> test(3, false),
() -> test(14, false)
);
}
private void test(int given, boolean expected) {
// when
Solution solution = new Solution();
boolean actual = solution.judgeSquareSum(given);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
[LeetCode - Daily Challenge] 330. Patching Array (0) | 2021.08.30 |
---|---|
[LeetCode - Daily Challenge] 331. Verify Preorder Serialization of a Binary Tree (0) | 2021.08.27 |
[LeetCode - Daily Challenge] 537. Complex Number Multiplication (0) | 2021.08.25 |
[LeetCode - Daily Challenge] 653. Two Sum IV - Input is a BST (0) | 2021.08.24 |
[LeetCode - Daily Challenge] 850. Rectangle Area II (0) | 2021.08.23 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- spring boot application
- 스프링 데이터 jpa
- intellij
- 클린 아키텍처
- Spring Boot JPA
- 알고리즘
- Spring Data JPA
- JSON
- 함께 자라기 후기
- leetcode
- Jackson
- 스프링 부트 회원 가입
- @ManyToOne
- Spring Boot
- Spring Boot Tutorial
- 스프링 부트
- 스프링 부트 애플리케이션
- 스프링부트
- 스프링 부트 튜토리얼
- spring boot jwt
- 헥사고날 아키텍처
- QueryDSL
- r
- Java
- JPA
- Linux
- proto3
- spring boot app
- 함께 자라기
- gRPC
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함