码迷,mamicode.com
首页 > 其他好文 > 详细

cf1000 C. Covered Points Count

时间:2019-02-02 12:54:32      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:\n   begin   art   namespace   std   space   star   style   lld   

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
map<ll ,int > mp;
ll cnt[200010];
int main()
{
    int n;
    scanf("%d",&n);
    for(int i=1;i<=n;i++)
    {
        ll l,r;
        scanf("%lld%lld",&l,&r);
        mp[l]++;
        mp[r+1]--;    
    }
    ll start;
    int num=0;
    for(auto it=mp.begin();it!=mp.end();it++)
    {
        if(it==mp.begin())
        {
            start=it->first;
            num+=it->second;
        }
        else
        {
            //printf("%d %d\n",num,(it->first) - start);
            cnt[num]+=( (it->first) - start);//cnt记录的是点的个数,所以会爆int!!! 
            start=(it->first);
            num+=it->second;
        }
    }
    for(int i=1;i<=n;i++)
       printf("%lld ",cnt[i]);
    printf("\n");
}

前缀和的变体。

cf1000 C. Covered Points Count

标签:\n   begin   art   namespace   std   space   star   style   lld   

原文地址:https://www.cnblogs.com/lishengkangshidatiancai/p/10348100.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!