https://www.hackerrank.com/challenges/die-hard-3/problem

仔细看看还真是这么回事,大可以把打水看成是往答案ans中加一瓶水,而而倒水则可以看成是把答案ans减掉一瓶水,而从一罐到另一罐的水不关,倒掉的话实际上就和这个线性组合类似了:m = ax + by,如果说y为负数,可以类比上面的思想,实际上相当于往a中倒水然后倒到b中,然后把b中的水满的倒掉y罐,正数的话类似即可。

#include 
#include 
#include 
#include 
using namespace std;
int gcd(int a, int b) {
    return (b == 0) ? a : (gcd(b, a % b));
}
int main() {
    int a, b, c, T;
    cin >> T;
    while (T--) {
        cin >> a >> b >> c;
        int g = gcd(a, b);
        if (c % g == 0) {
            cout << "YES" << endl;
        }
        else {
            cout << "NO" << endl;
        }
    }
    return 0;
}

你可能感兴趣的:(hackrank)