首页 > 代码库 > 1247 可能的路径 逆向思维
1247 可能的路径 逆向思维
http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1247
问能否从(a, b)走到(x, y)
也就是能否从终点走到起点。
然后发现依次经过(a, a - b) --- (a - b, b) --- (a, a + b)就可以调换a和b的位置。
然后这就是更相减损术
所以如果gcd相同,就可以每一步走过来了
#include <cstdio> #include <cstdlib> #include <cstring> #include <cmath> #include <algorithm> #include <assert.h> #define IOS ios::sync_with_stdio(false) using namespace std; #define inf (0x3f3f3f3f) typedef long long int LL; #include <iostream> #include <sstream> #include <vector> #include <set> #include <map> #include <queue> #include <string> #include <bitset> void work() { LL a, b, x, y; cin >> a >> b >> x >> y; if (__gcd(a, b) == __gcd(x, y)) { cout << "Yes" << endl; } else cout << "No" << endl; } int main() { #ifdef local freopen("data.txt", "r", stdin); // freopen("data.txt", "w", stdout); #endif int t; cin >> t; while (t--) work(); return 0; }
1247 可能的路径 逆向思维
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。