comments | difficulty | edit_url | tags | |||
---|---|---|---|---|---|---|
true |
中等 |
|
给定一个非负整数 c
,你要判断是否存在两个整数 a
和 b
,使得 a2 + b2 = c
。
示例 1:
输入:c = 5 输出:true 解释:1 * 1 + 2 * 2 = 5
示例 2:
输入:c = 3 输出:false
提示:
0 <= c <= 231 - 1
我们可以使用双指针的方法来解决这个问题,定义两个指针 false
。
时间复杂度
class Solution:
def judgeSquareSum(self, c: int) -> bool:
a, b = 0, int(sqrt(c))
while a <= b:
s = a**2 + b**2
if s == c:
return True
if s < c:
a += 1
else:
b -= 1
return False
class Solution {
public boolean judgeSquareSum(int c) {
long a = 0, b = (long) Math.sqrt(c);
while (a <= b) {
long s = a * a + b * b;
if (s == c) {
return true;
}
if (s < c) {
++a;
} else {
--b;
}
}
return false;
}
}
class Solution {
public:
bool judgeSquareSum(int c) {
long long a = 0, b = sqrt(c);
while (a <= b) {
long long s = a * a + b * b;
if (s == c) {
return true;
}
if (s < c) {
++a;
} else {
--b;
}
}
return false;
}
};
func judgeSquareSum(c int) bool {
a, b := 0, int(math.Sqrt(float64(c)))
for a <= b {
s := a*a + b*b
if s == c {
return true
}
if s < c {
a++
} else {
b--
}
}
return false
}
function judgeSquareSum(c: number): boolean {
let [a, b] = [0, Math.floor(Math.sqrt(c))];
while (a <= b) {
const s = a * a + b * b;
if (s === c) {
return true;
}
if (s < c) {
++a;
} else {
--b;
}
}
return false;
}
use std::cmp::Ordering;
impl Solution {
pub fn judge_square_sum(c: i32) -> bool {
let mut a: i64 = 0;
let mut b: i64 = (c as f64).sqrt() as i64;
while a <= b {
let s = a * a + b * b;
match s.cmp(&(c as i64)) {
Ordering::Equal => {
return true;
}
Ordering::Less => {
a += 1;
}
Ordering::Greater => {
b -= 1;
}
}
}
false
}
}
这个问题实际上是关于一个数能否表示为两个平方数之和的条件。这个定理可以追溯到费马(Fermat)和欧拉(Euler),它在数论中是一个经典结果。
具体来说,这个定理可以表述为:
一个正整数 ( n ) 能表示为两个平方数之和的充要条件是:( n ) 的所有形如 ( 4k + 3 ) 的素数因子的幂次均为偶数。
这意味着,如果我们将
更正式地,假设
例如:
- 数字
$13$ 是素数,且$13 \equiv 1 \pmod{4}$ ,因此它可以表示为两个平方数之和,即$13 = 2^2 + 3^2$ 。 - 数字
$21$ 分解为$3 \times 7$ ,其中$3$ 和$7$ 都是形如$4k + 3$ 的素数因子,并且它们的幂次都是$1$ (奇数),因此$21$ 不能表示为两个平方数之和。
总结起来,这个定理在数论中非常重要,用于判断一个数是否可以表示为两个平方数之和。
时间复杂度
class Solution:
def judgeSquareSum(self, c: int) -> bool:
for i in range(2, int(sqrt(c)) + 1):
if c % i == 0:
exp = 0
while c % i == 0:
c //= i
exp += 1
if i % 4 == 3 and exp % 2 != 0:
return False
return c % 4 != 3
class Solution {
public boolean judgeSquareSum(int c) {
int n = (int) Math.sqrt(c);
for (int i = 2; i <= n; ++i) {
if (c % i == 0) {
int exp = 0;
while (c % i == 0) {
c /= i;
++exp;
}
if (i % 4 == 3 && exp % 2 != 0) {
return false;
}
}
}
return c % 4 != 3;
}
}
class Solution {
public:
bool judgeSquareSum(int c) {
int n = sqrt(c);
for (int i = 2; i <= n; ++i) {
if (c % i == 0) {
int exp = 0;
while (c % i == 0) {
c /= i;
++exp;
}
if (i % 4 == 3 && exp % 2 != 0) {
return false;
}
}
}
return c % 4 != 3;
}
};
func judgeSquareSum(c int) bool {
n := int(math.Sqrt(float64(c)))
for i := 2; i <= n; i++ {
if c%i == 0 {
exp := 0
for c%i == 0 {
c /= i
exp++
}
if i%4 == 3 && exp%2 != 0 {
return false
}
}
}
return c%4 != 3
}
function judgeSquareSum(c: number): boolean {
const n = Math.floor(Math.sqrt(c));
for (let i = 2; i <= n; ++i) {
if (c % i === 0) {
let exp = 0;
while (c % i === 0) {
c /= i;
++exp;
}
if (i % 4 === 3 && exp % 2 !== 0) {
return false;
}
}
}
return c % 4 !== 3;
}