1. 程式人生 > >A - Treasure Hunt CodeForces - 817A(思路:靠感覺?)

A - Treasure Hunt CodeForces - 817A(思路:靠感覺?)

A - Treasure Hunt CodeForces - 817A(思路:靠感覺?)

題目:給出船的位置和保障的位置,以及船可以的移動方式。(±x,±y)

思路:很迷的就寫對了。感覺就是一個判斷條件。同為奇偶就好了。還有兩地的差值能被xy整除。 

#include<cstdio>
#include<iostream>
#include<cmath>
using namespace std;
int main()
{
    int x1,x2,y1,y2;
    int x,y;
    scanf("%d%d%d%d%d%d",&x1,&y1,&x2,&y2,&x,&y);
    x2-=x1;//
    y2-=y1;//寶藏和船的差距。
    if(x2%x==0&&y2%y==0)
    {
        if(((x2/x)&1)&&((y2/y)&1)||!((x2/x)&1)&&!((y2/y)&1))
            printf("YES\n");
        else printf("NO\n");
    }
    else
        printf("NO\n");

    return 0;
}