欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Educational Codeforces Round 23#A. Treasure Hunt

程序员文章站 2022-07-07 22:52:40
...

Educational Codeforces Round 23#A. Treasure HuntEducational Codeforces Round 23#A. Treasure Hunt

题意:

1. 一张二维图

2. 给你起点和终点坐标

3. 给你基础移动的能力(限定在基础移动上的四种移动方法)

4. 能到终点就cout YES ,否则cout NO

思路:

1. 如果x方向y方向不能通过整数次变换飞到终点,NO

2. 分别计算x和y的移动次数,次数绝对值不相等,NO

3. 剩余情况都是 YES


以下是我的AC代码(代码后面是拆分解):

Educational Codeforces Round 23#A. Treasure Hunt

#include <bits/stdc++.h>
using namespace std;
int main()
{
    int x1,y1,x2,y2,x,y;
    cin >> x1 >> y1 >> x2 >> y2 >> x >> y;
    string s=(((x2-x1)%x || (y2-y1)%y) || abs((x2-x1)/x)%2!=abs((y2-y1)/y)%2)?"NO":"YES";
    cout << s << endl;
    return 0;
}


    /*
    int a=abs((x2-x1)/x),b=abs((y2-y1)/y);
    if( ((x2-x1)%x || (y2-y1)%y) || a%2!=b%2 )
        cout << "NO" << endl;
    else
        cout << "YES" << endl;
    */