程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> YT14-HDU-盒子與瓷磚

YT14-HDU-盒子與瓷磚

編輯:C++入門知識

YT14-HDU-盒子與瓷磚


Problem Description

There is a large room in the Pyramid called Room-of-No-Return. Its floor is covered by rectangular tiles of equal size. The name of the room was chosen because of the very high number of traps and mechanisms in it. The ACM group has spent several years studying the secret plan of this room. It has made a clever plan to avoid all the traps. A specially trained mechanic was sent to deactivate the most feared trap called Shattered Bones. After deactivating the trap the mechanic had to escape from the room. It is very important to step on the center of the tiles only; he must not touch the edges. One wrong step and a large rock falls from the ceiling squashing the mechanic like a pancake. After deactivating the trap, he realized a horrible thing: the ACM plan did not take his equipment box into consideration. The box must be laid onto the ground because the mechanic must have both hands free to prevent contact with other traps. But when the box is laid on the ground, it could touch the line separating the tiles. And this is the main problem you are to solve.

Input

The input consists of T test cases. The number of them (T) is given on the first line of the input. Each test case consists of a single line. The line contains exactly four integer numbers separated by spaces: A, B, X and Y. A and Bindicate the dimensions of the tiles, X and Y are the dimensions of the equipment box (1 <= A, B, X, Y <= 50000).

Output

Your task is to determine whether it is possible to put the box on a single tile -- that is, if the whole box fits on a single tile without touching its border. If so, you are to print one line with the sentence "Escape is possible.". Otherwise print the sentence "Box cannot be dropped.".

Sample Input

2
10 10 8 8
8 8 10 10

Sample Output

Escape is possible.
Box cannot be dropped.

代碼如下:

#include
#include
using namespace std;
int main()
{
    int N;
    cin>>N;
    while(N--)
    {
        double a, b, n, m, temp;
        cin>>a>>b>>n>>m;
        if(a > b)
        {
            temp = a;
            a = b;
            b = temp;
        }
        if(n > m)
        {
            temp = n;
            n = m;
            m = temp;
        }
        double x, y;
        if(a >= n && b >= m)
        {
            cout<<"Escape is possible."< a && m > b) || (n > a && m < b))
        {
            cout<<"Box cannot be dropped."<= x)
            {
                cout<<"Escape is possible."<
兩個矩形的包容問題。



  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved