日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

【打CF,学算法——二星级】Codeforces Round #313 (Div. 2) B. Gerald is into Art(水题)...

發(fā)布時間:2025/6/15 50 豆豆
生活随笔 收集整理的這篇文章主要介紹了 【打CF,学算法——二星级】Codeforces Round #313 (Div. 2) B. Gerald is into Art(水题)... 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

【CF簡單介紹】

提交鏈接:http://codeforces.com/contest/560/problem/B


題面:

B. 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 ana1?×?b1 rectangle, the paintings have shape of aa2?×?b2 anda3?×?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 andb1 — the sides of the board. Next two lines contain numbersa2,?b2,?a3 andb3 — the sides of the paintings. All numbersai,?bi in the input are integers and fit into the range from1 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.

解題:

??? 就是看能不能把兩塊畫。放進板內(nèi),要求畫必須平行于板。


代碼:

#include <iostream> #include <algorithm> #include <cstdio> using namespace std; int main() {int l1,w1,l2,w2,l3,w3;scanf("%d%d",&l1,&w1);scanf("%d%d",&l2,&w2);scanf("%d%d",&l3,&w3);bool flag=false;if((l2+l3)<=l1&&(w2<=w1&&w3<=w1))flag=true;else if((l2+w3)<=l1&&(w2<=w1)&&(l3<=w1))flag=true;else if((w2+l3)<=l1&&(l2<=w1)&&(w3<=w1))flag=true;else if((w2+w3)<=l1&&(l2<=w1&&l3<=w1))flag=true;else if((w2+w3)<=w1&&(l2<=l1)&&(l3<=l1))flag=true;else if((w2+l3)<=w1&&(l2<=l1)&&(w3<=l1))flag=true;else if((l2+w3)<=w1&&(w2<=l1)&&(l3<=l1))flag=true;else if((l2+l3)<=w1&&(w2<=l1)&&(w3<=l1))flag=true;if(flag)printf("YES\n");else printf("NO\n");return 0; }


總結

以上是生活随笔為你收集整理的【打CF,学算法——二星级】Codeforces Round #313 (Div. 2) B. Gerald is into Art(水题)...的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。