UVa 11428 - Cubes

Contents

  1. 1. Problem
  2. 2. Solution
  3. 3. Code

Problem

題目網址
中文網址

$N = x^3 - y^3$ ,給 $N$ 求 $x$ 和 $y$ ,若有多組解,$y$ 小的優先。

Solution

$60^3 - 59^3 \gt 10000$ ,所以建表建到 59 即可,一邊記下所用的 x 和 y。

Code

UVa 11428UVa 11428 - Cubes
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
32
#include<cstdio>
#define N 10001

int main()
{
//60 * 60 * 60 - 59 * 59 * 59 超過10000了
int x[N] = {}, y[N] = {}, n;
bool isOk[N] = {};
for (int i = 2; i < 60; i++)
{
int iii = i*i*i;
for (int j = 1; j < i; j++)
{
n = iii - j*j*j;
if (n <= 10000 && !isOk[n])
{
isOk[n] = true;
x[n] = i;
y[n] = j;
}
}
}

while (scanf("%d", &n) && n)
{
if (isOk[n])
printf("%d %d\n", x[n], y[n]);
else puts("No solution");
}

return 0;
}