[LeetCode] 633. Sum of Square Numbers
阿新 • • 發佈:2018-12-14
題目
Given a non-negative integer c, your task is to decide whether there’re two integers a and b such that a2 + b2 = c.
Example 1:
Input: 5
Output: True
Explanation: 1 * 1 + 2 * 2 = 5
Example 2:
Input: 3
Output: False
思路
題目大意
給定一個數 c,c求 是否存在a,b使得a2 + b2 = c
解題思路
參考 Two Sum。pleft 指標為 0,pright為可能的最大值。求其平方的和 與 c比較,並相應移動兩指標。
code
class Solution {
public boolean judgeSquareSum(int c) {
int i = 0,j = (int)Math.sqrt(c);
while(i<=j){
int tsum = i*i + j*j;
if(tsum<c) i++;
else if(tsum>c) j--;
else return true;
}
return false;
}
}