-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1015A.cpp
More file actions
39 lines (37 loc) · 885 Bytes
/
1015A.cpp
File metadata and controls
39 lines (37 loc) · 885 Bytes
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
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define mp make_pair
#define all(x) (x).begin(), (x).end()
#define fo(i,n) for(int i = 0; i < n; i++)
#define _ ios_base::sync_with_stdio(0);cin.tie(0);
#define endl '\n'
int main() {_
int n,m;
cin >> n >> m;
vector<pair<int,int>>intervalos;
while(n--){
int l,r;
cin >> l >> r;
intervalos.push_back(make_pair(l,r));
}
int qnt = 0;
vector<int>pontos;
for(int i = 1;i<=m;i++){
bool tag = true;
for(auto ponto : intervalos){
if((ponto.first<=i) && ponto.second >=i){
tag = false;
break;
}
}
if(tag){
qnt++;
pontos.push_back(i);
}
}cout <<qnt<<endl;
for(int ponto : pontos){
cout <<ponto <<" ";
}cout <<endl;
return 0;
}