zoukankan      html  css  js  c++  java
  • HDU 5054 Alice and Bob(数学)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5054



    Problem Description
    Bob and Alice got separated in the Square, they agreed that if they get separated, they'll meet back at the coordinate point (x, y). Unfortunately they forgot to define the origin of coordinates and the coordinate axis direction. Now, Bob in the lower left corner of the Square, Alice in the upper right corner of the the Square. Bob regards the lower left corner as the origin of coordinates, rightward for positive direction of axis X, upward for positive direction of axis Y. Alice regards the upper right corner as the origin of coordinates, leftward for positive direction of axis X, downward for positive direction of axis Y. Assuming that Square is a rectangular, length and width size is N * M. As shown in the figure:

    Bob and Alice with their own definition of the coordinate system respectively, went to the coordinate point (x, y). Can they meet with each other ?

     
    Note: Bob and Alice before reaching its destination, can not see each other because of some factors (such as buildings, time poor).

     
    Input
    There are multiple test cases. Please process till EOF. Each test case only contains four integers : N, M and x, y. The Square size is N * M, and meet in coordinate point (x, y). ( 0 < x < N <= 1000 , 0 < y < M <= 1000 ).
     
    Output
    If they can meet with each other, please output "YES". Otherwise, please output "NO".
     
    Sample Input
    10 10 5 5 10 10 6 6
     
    Sample Output
    YES NO
     
    Source


    官方题解:



    代码例如以下:

    #include <cstdio>
    int main()
    {
        int n, m;
        int x, y;
        while(~scanf("%d%d%d%d",&n,&m,&x,&y))
        {
            if(x*2==n && y*2==m)
                printf("YES
    ");
            else
                printf("NO
    ");
        }
        return 0;
    }


  • 相关阅读:
    Day 37 数据库初识
    Day 36 socket并发,协程,进程池与线程池
    Day 35 GIL全局解释器锁,死锁与递归锁,信号量,event事件,线程queue
    DAY 34 进程通信、消费者模型和线程
    09-盒模型
    08-层叠性权重相同处理
    07-css的继承性和层叠性
    06-伪元素选择器
    05-伪类选择器
    04-属性选择器
  • 原文地址:https://www.cnblogs.com/zhchoutai/p/6823336.html
Copyright © 2011-2022 走看看