-
Notifications
You must be signed in to change notification settings - Fork 0
/
Airline_Restrictions.cpp
100 lines (79 loc) · 2.17 KB
/
Airline_Restrictions.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
//Airline Restrictions
//https://www.codechef.com/problems/AIRLINE
//#include<bits/stdc++.h>
#include<vector>
//#include<queue>
//#include<stack>
//#include<set>
//#include<map>
//#include<unordered_set>
//#include<unordered_map>
//#include<deque>
//#include<utility>
//#include<priority_queue>
#include<iostream>
#include<algorithm>
//#include<stdlib.h>
//#include<math.h>
//#include<time.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef vector<int> vi;
typedef pair<int, int> ii;
typedef pair<ll, ll> pll;
typedef pair<string, string> pss;
typedef vector<ii> vii;
typedef vector<vi> vvi;
typedef vector<vii> vvii;
typedef vector<ll> vl;
typedef vector<vl> vvl;
#define MAX INT_MAX
#define MIN INT_MIN
#define all(x) x.begin(), x.end()
// loop
#define fo(a, b, c) for (int(a) = (b); (a)<(c); ++(a))
#define foe(a, b, c) for (int(a) = (b); (a)<=(c); ++(a))
#define foge(a, b, c) for (int(a) = (b); (a)>=(c); --(a))
#define fosq(a, b, c) for (int(a) = (b); (a)*(a) <= (c); ++(a))
#define foc(a, b, c) for (char(a) = (b); (a)<(c); ++(a))
#define foce(a, b, c) for (char(a) = (b); (a)<=(c); ++(a))
#define foat(a, b) for (auto &(a) : (b))
#define foall(a, b) for (auto (a) : (b))
#define range(i, n) fo(i, 0, n)
// util
#define sqr(x) ((x) * (x))
#define minele(a) *min_element(all(a))
#define maxele(a) *max_element(all(a))
#define sum(a) accumulate(all(a), 0)
// IO
void input() { }
template <typename T, typename... Args>
void read (T& t, Args&... args) { cin>>t; read(args...);}
void print() { }
template <typename T, typename... Args>
void write (T& t, Args&... args) { cout<<t<<" "; write(args...);}
//driver code
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
int Test; cin >> Test;
while(Test--) {
//solution start
int a,b,c,d,e; cin>>a>>b>>c>>d>>e;
if(a+b+c > d+e)
cout<<"no\n";
else {
if(a+b <= d && c <= e)
cout<<"yes\n";
else if(b+c <= d && a <= e)
cout<<"yes\n";
else if(a+c <= d && b <= e)
cout<<"yes\n";
else cout<<"no\n";
}
//solution end
}
return 0;
}