1247 可能的路径 逆向思维

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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;
}
View Code

 

以上是关于1247 可能的路径 逆向思维的主要内容,如果未能解决你的问题,请参考以下文章

51Nod1247 可能的路径

51nod 1247可能的路径

51 Nod 1247 可能的路径(数学)

Party BFS搜索最长路径 + 记忆化剪枝 || dfs(逆向思维找父亲)

GYM 100792 K. King's Rout(topo排序+逆向思维)

Android 逆向类加载器 ClassLoader ( 类加载器源码简介 | BaseDexClassLoader | DexClassLoader | PathClassLoader )(代码片段