365. 水壶问题
为保证权益,题目请参考 365. 水壶问题(From LeetCode).
解决方案1
CPP
C++
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
class Solution
{
public:
bool canMeasureWater(int x, int y, int z)
{
if (x + y < z)
{
return false;
}
else if (x == 0 || y == 0)
{
return z == 0 || x + y == z;
}
return z % this->gcd(x, y) == 0;
}
int gcd(int x, int y)
{
for (int i = min(x, y); i >= 1; --i)
{
if (x % i == 0 && y % i == 0)
{
return i;
}
}
return -1;
}
};
int main()
{
return 0;
}
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
33
34
35
36
37
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
33
34
35
36
37