zoukankan      html  css  js  c++  java
  • CodeForces 560B Gerald is into Art

     Gerald is into Art
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Gerald bought two very rare paintings at the Sotheby's auction and he now wants to hang them on the wall. For that he bought a special board to attach it to the wall and place the paintings on the board. The board has shape of an a1 × b1 rectangle, the paintings have shape of a a2 × b2 and a3 × b3 rectangles.

    Since the paintings are painted in the style of abstract art, it does not matter exactly how they will be rotated, but still, one side of both the board, and each of the paintings must be parallel to the floor. The paintings can touch each other and the edges of the board, but can not overlap or go beyond the edge of the board. Gerald asks whether it is possible to place the paintings on the board, or is the board he bought not large enough?

    Input

    The first line contains two space-separated numbers a1 and b1 — the sides of the board. Next two lines contain numbers a2, b2, a3 andb3 — the sides of the paintings. All numbers ai, bi in the input are integers and fit into the range from 1 to 1000.

    Output

    If the paintings can be placed on the wall, print "YES" (without the quotes), and if they cannot, print "NO" (without the quotes).

    Sample test(s)
    input
    3 2
    1 3
    2 1
    output
    YES
    input
    5 5
    3 3
    3 3
    output
    NO
    input
    4 2
    2 3
    1 2
    output
    YES
    Note

    That's how we can place the pictures in the first test:

    And that's how we can do it in the third one.

    #include <stdio.h>
    #include <string.h>
    #include <math.h>
    #include <stdlib.h>
    #include <algorithm>
    #define N 100010
    #define INF 0x3f3f3f3f
    
    using namespace std;
    
    int main()
    {
        int a, b, a1, b1, a2, b2, f;
        while(~scanf("%d%d", &a, &b))
        {
            f = 0;
            if(a > b)
                swap(a, b);
            scanf("%d%d", &a1, &b1);
            if(a1 > b1)
                swap(a1, b1);
            scanf("%d%d", &a2, &b2);
            if(a2 > b2)
                swap(a2, b2);
            if(a1 <= a && b1 <= b)
            {
                if(a2 <= a - a1 && b2 <= b)
                    f = 1;
                if(a2 <= b - b1 && b2 <= a)
                    f = 1;
                if(b2 <= a - a1 && a2 <= b)
                    f = 1;
                if(b2 <= b - b1 && a2 <= a)
                    f = 1;
            }
            if(a1 <= b && b1 <= a)
            {
                if(a2 <= b - a1 && b2 <= a)
                    f = 1;
                if(a2 <= a - b1 && b2 <= b)
                    f = 1;
                if(b2 <= b - a1 && a2 <= a)
                    f = 1;
                if(b2 <= a - b1 && a2 <= b)
                    f = 1;
            }
            if(f == 1)
                printf("YES
    ");
            else
                printf("NO
    ");
        }
        return 0;
    }
  • 相关阅读:
    2018 ICPC南京网络赛 A An Olympian Math Problem(数论题)
    算法竞赛模板 素数测试(Miller-Rabin测试)
    算法竞赛模板 tarjan算法
    2018 CCPC网络赛 1004 Find Integer(勾股数+费马大定理)
    算法竞赛模板 概率dp
    算法竞赛模板 重载运算符
    算法竞赛模板 矩阵快速幂
    算法竞赛模板 回文素数
    算法竞赛模板 AC自动机
    算法竞赛模板 拓扑排序
  • 原文地址:https://www.cnblogs.com/qq2424260747/p/4713317.html
Copyright © 2011-2022 走看看