Rofyda_Elghadban1

Untitled

Sep 14th, 2023
837
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.76 KB | None | 0 0
  1.  #include <bits/stdc++.h>
  2.  
  3.  #define ll long long
  4.  #define ull unsigned long long
  5.  #define pi 3.141592654
  6.  #define NUM 1e18
  7.  #define Mod  1'000'000'007
  8.  #define fixed(n) fixed<<setprecision(n)
  9.  #define cin(v) for(auto &i:v) cin >> i ;
  10.  #define cout(v) for(auto &i:v) cout << i  <<" ";
  11.  #define vowel(x) (x=='e'||x=='a'||x=='i'||x=='o'||x=='u')
  12.  #define small(x) (x>=97&&x<=122)
  13.  #define capital(x) (x>=65&&x<=90)
  14.  #define Tolower(s) transform(s.begin(),s.end(),s.begin(),::tolower);
  15.  #define Toupper(s) transform(s.begin(),s.end(),s.begin(),::toupper);
  16.  #define all(v) ((v).begin()), ((v).end())
  17.  #define allr(v) ((v).rbegin()), ((v).rend())
  18.  #define updmax(a,b) a=max(a,b)
  19.  #define updmin(a,b) a=min(a,b)
  20.  #define ceil(a,b) ((a/b)+(a%b?1:0))
  21.  /* asc -> 1 2 3 ,des -> 3 2 1 */
  22.  
  23.  /***********************************************************************************/
  24.  
  25.  using namespace std;
  26.  
  27.  void Rofyda_Elghadban(){
  28.   #ifndef ONLINE_JUDGE  
  29.     freopen("input.txt", "r", stdin), freopen("output.txt", "w", stdout);
  30.    #endif
  31.     ios_base::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
  32.  }
  33.  
  34.  int partial[1000000]{};
  35.  void solve(){
  36.   int n,m;
  37.   cin>>n>>m;
  38.   vector<int>v(2*n),ans;
  39.   while(n--){
  40.     int l,r;
  41.     cin>>l>>r;
  42.     partial[l]+=1;
  43.     partial[r+1]-=1;
  44.   }
  45.   for(int i=1;i<=m;i++){
  46.     partial[i]+=partial[i-1];
  47.   }
  48.   for(int i=0;i<m;i++){
  49.     v[i]+=partial[i+1];
  50.     if(v[i]==0){
  51.       ans.push_back(i+1);
  52.     }
  53.   }
  54.   if(ans.size()!=0){
  55.     cout<<ans.size()<<"\n";
  56.     cout(ans);
  57.   }else if(ans.size()==0){
  58.     cout<<ans.size()<<"\n"<<" ";
  59.   }
  60.  
  61.  
  62.  
  63.  
  64.  }
  65.  
  66.  
  67.  int main(){
  68.  Rofyda_Elghadban();
  69.  //freopen("input.txt","r",stdin);
  70.  //freopen("output.txt","r",stdout);
  71.  solve();
  72.  
  73.  
  74.  
  75.  
  76.  return 0;
  77. }
  78.  
  79.  
Advertisement
Add Comment
Please, Sign In to add comment