-
Notifications
You must be signed in to change notification settings - Fork 0
/
Movie Festival.cpp
69 lines (53 loc) · 1.22 KB
/
Movie Festival.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
//#include<bits/stdc++.h>
//#define ll long long
//using namespace std;
//int main()
//{
// ios_base::sync_with_stdio(false);
// cin.tie(NULL);
// int n; cin>>n;
// vector<pair<int ,int>>v;
// for(int i=0;i<n;i++){
// int l,r; cin>>l>>r;
// v.push_back({l,r});
// }
// sort(v.begin(), v.end(), [](pair<int, int>a, pair<int, int> b){
// return a.second<b.second;
// });
// int max_end=-1;
// int ans=0;
// for(auto [start,end]:v){
//// cout<<l<<r;
// if(start>=max_end){
// max_end=end;
// ans++;
// }
//
// }
// cout<<ans<<'\n';
// return 0;
//}
#include<bits/stdc++.h>
#define ll long long
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n; cin>>n;
vector<pair<int ,int>>v;
for(int i=0;i<n;i++){
int l,r; cin>>l>>r;
v.push_back({r,l});
}
sort(v.begin(),v.end());
int max_end =0; int ans=0;
for(auto[end ,start]:v){
if(start>=max_end){
max_end=end;
ans++;
}
}
cout<<ans<<endl;
return 0;
}