码迷,mamicode.com
首页 > 其他好文 > 详细

1247 可能的路径 逆向思维

时间:2017-02-07 01:15:34      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:sync   www   its   images   display   isp   online   typedef   bitset   

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 可能的路径 逆向思维

标签:sync   www   its   images   display   isp   online   typedef   bitset   

原文地址:http://www.cnblogs.com/liuweimingcprogram/p/6372278.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!