-
Notifications
You must be signed in to change notification settings - Fork 2
/
1114A.cpp
54 lines (46 loc) · 963 Bytes
/
1114A.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
/*
* Author: Rushi Vachhani
* Platform: Codeforces
* Problem_ID: 1114A
* Language: C++
*/
#include<bits/stdc++.h>
using namespace std;
void possible() {
cout<<"YES\n";
return;
}
void notPossible() {
cout<<"NO\n";
return;
}
void solve() {
int x,y,z;
cin >> x >> y >> z;
int a,b,c;
cin >> a >> b >> c;
if(a+b+c < x+y+z) { notPossible(); return; }
else {
if(a<x) { notPossible(); return; }
else {
a = a-x;
if(a+b < y) { notPossible(); return; }
else {
if(a>=y) { a = a - y; }
else {
y = y - a;
a = 0;
b = b - y;
}
if(a+b+c < z) { notPossible(); return; }
else { possible(); return; }
}
}
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
solve();
return 0;
}