-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDragons.cpp
58 lines (52 loc) · 1.4 KB
/
Dragons.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
// https://codeforces.com/problemset/problem/230/A
#include <bits/stdc++.h>
#define fi first
#define se second
#define pb push_back
#define mp make_pair
#define ll long long
#define pll pair<long, long>
#define vll vector<long long>
#define inf 1e18
#define range(a,b) substr(a,b-a+1)
#define FIO ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0)
using namespace std;
bool comp(pll a, pll b) {
if (a.first == b.first)
return a.second > b.second;
return a.first < b.first;
}
int main()
{
FIO;
#ifndef ONLINE_JUDGE
//remove this piece of code when this has to be submitted in kickstart, coding ninjas
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
//freopen is used to associate a file with stdin or stdout stream in C++
#endif
ll s, n;
cin >> s >> n;
vector <pll> arr;
for (ll i = 0; i < n; i++) {
ll x, y;
cin >> x >> y;
arr.pb(mp(x, y));
}
sort(arr.begin(), arr.end(), comp);
bool flag = true;
for (ll i = 0; i < n; i++) {
if (s > arr[i].first) {
s += arr[i].second;
}
else {
flag = false;
break;
}
}
if (flag)
cout << "YES\n";
else
cout << "NO\n";
return 0;
}