C.対象ポイント数(思考+差異)

https://codeforces.com/problemset/problem/1000/C


アイデア:値の範囲が広く、差分スキャンは許可されていません。離散化後に区別する必要があります。線分の終点を区別します。マップをトラバースして、現在のポイントから最後の位置(スキャン中のメンテナンス)間隔までのポイントのカバレッジ時間を取得します。長さを引くだけです。

 

#include<iostream>
#include<vector>
#include<queue>
#include<cstring>
#include<cmath>
#include<map>
#include<set>
#include<cstdio>
#include<algorithm>
#define debug(a) cout<<#a<<"="<<a<<endl;
using namespace std;
const int maxn=2e5+1000;
typedef long long LL;
inline LL read(){LL x=0,f=1;char ch=getchar();	while (!isdigit(ch)){if (ch=='-') f=-1;ch=getchar();}while (isdigit(ch)){x=x*10+ch-48;ch=getchar();}
return x*f;}
map<LL,LL>map1;
vector<LL>ans[maxn];
int main(void)
{
  cin.tie(0);std::ios::sync_with_stdio(false);
  LL n;cin>>n;
  for(LL i=1;i<=n;i++){
     LL l,r;cin>>l>>r;
     map1[l]++;map1[r+1]--;
  }
  LL res=0;
  LL lastpos=0;
  for(auto i:map1){
     LL cnt=i.first-lastpos;
     ans[res].push_back(cnt);
     res+=i.second;
     lastpos=i.first;
  }
  for(LL i=1;i<=n;i++){
     LL f=0;
     for(auto j:ans[i]){
        f+=j;
     }
     cout<<f<<" ";
  }
return 0;
}

 

おすすめ

転載: blog.csdn.net/zstuyyyyccccbbbb/article/details/115204106
おすすめ