【Codeforces - 1000C】Covered Points Count(思维,离散化,差分)

题干:

You are given nn segments on a coordinate line; each endpoint of every segment has integer coordinates. Some segments can degenerate to points. Segments can intersect with each other, be nested in each other or even coincide.

Your task is the following: for every k∈[1..n]k∈[1..n], calculate the number of points with integer coordinates such that the number of segments that cover these points equals kk. A segment with endpoints lili and riri covers point xx if and only if li≤x≤rili≤x≤ri.

Input

The first line of the input contains one integer nn (1≤n≤2⋅1051≤n≤2⋅105) — the number of segments.

The next nn lines contain segments. The ii-th line contains a pair of integers li,rili,ri (0≤li≤ri≤10180≤li≤ri≤1018) — the endpoints of the ii-th segment.

Output

Print nn space separated integers cnt1,cnt2,…,cntncnt1,cnt2,…,cntn, where cnticnti is equal to the number of points such that the number of segments that cover these points equals to ii.

Examples

input

Copy

3
0 3
1 3
3 8

output

Copy

6 2 1 

input

Copy

3
1 3
2 4
5 7

output

Copy

5 2 0 

Note

The picture describing the first example:

Points with coordinates [0,4,5,6,7,8][0,4,5,6,7,8] are covered by one segment, points [1,2][1,2] are covered by two segments and point [3][3] is covered by three segments.

The picture describing the second example:

Points [1,4,5,6,7][1,4,5,6,7] are covered by one segment, points [2,3][2,3] are covered by two segments and there are no points covered by three segments.

 

题目大意:

给定n个区间线段,要求输出n个数,其中第i个数代表:被i个线段覆盖的点的个数。

解题报告:

离散化差分,跟2019icpc上海网络赛那题一样的套路。

AC代码:

#include<cstdio>
#include<iostream>
#include<algorithm>
#include<queue>
#include<stack>
#include<map>
#include<vector>
#include<set>
#include<string>
#include<cmath>
#include<cstring>
#define FF first
#define SS second
#define ll long long
#define pb push_back
#define pm make_pair
using namespace std;
typedef pair<ll,ll> PLL;
const int MAX = 2e5 + 5;
map<ll,int> mp; 
int n;
ll l,r;
ll ans[MAX];//下标表示覆盖次数 
int main()
{cin>>n;for(int i = 1; i<=n; i++) cin>>l>>r,mp[l]++,mp[r+1]--;ll pre = -1,sum=0;for(auto it = mp.begin(); it != mp.end(); ++it) {ans[sum] += it->FF - pre;sum += it->SS;		pre = it->FF;				}for(int i = 1; i<=n; i++) {printf("%lld%c",ans[i],i == n ?'\n' :' ');}return 0 ;
}

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/439663.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Coursera自动驾驶课程第5讲:Vehicle Dynamic Modeling

在上一讲《Coursera自动驾驶课程第4讲&#xff1a;Safety Assurance for Autonomous Vehicles》中我们了解了自动驾驶汽车中一个非常重要的模块&#xff1a;安全模块。 本讲我们将学习新的模块&#xff1a;汽车运动学和动力学模块。&#xff08;这部分可能需要一定的理论力学和…

详细解析电源滤波电容的选取与计算

电感的阻抗与频率成正比&#xff0c;电容的阻抗与频率成反比。所以&#xff0c;电感可以阻扼高频通过&#xff0c;电容可以阻扼低频通过。二者适当组合&#xff0c;就可过滤各种频率信号。如在整流电路中&#xff0c;将电容并在负载上或将电感串联在负载上&#xff0c;可滤去交…

【CodeForces - 124C】Prime Permutation(数学,思维,小结论)

题干&#xff1a; You are given a string s, consisting of small Latin letters. Lets denote the length of the string as |s|. The characters in the string are numbered starting from 1. Your task is to find out if it is possible to rearrange characters in st…

Java同步锁——lock与synchronized 的区别【转】

在网上看来很多关于同步锁的博文&#xff0c;记录下来方便以后阅读 一、Lock和synchronized有以下几点不同&#xff1a; 1&#xff09;Lock是一个接口&#xff0c;而synchronized是Java中的关键字&#xff0c;synchronized是内置的语言实现&#xff0c;synchronized是在JVM层面…

Coursera自动驾驶课程第6讲:Vehicle Longitudinal Control

在上一讲《Coursera自动驾驶课程第5讲&#xff1a;Vehicle Dynamic Modeling》中我们了解了汽车运动学和动力学模块。 本讲我们继续学习新的模块&#xff1a;汽车纵向控制。具体地&#xff0c;我们将学习PID控制算法&#xff0c;看看该算法是如何在自动驾驶汽车中应用的。 B站…

【CodeForces - 599C 】Day at the Beach(思维)

题干&#xff1a; 给定一个数列A&#xff0c;要求你将这个数列划分成几个连续的部分&#xff0c;使得每部分分别从小到大排序后整个数列有序。 问最多可以划分成几个部分。 Input 第一行包含一个整数 n (1 ≤ n ≤ 100 000) — 表示数列的长度 之后一行 n 个整数 hi …

Java并发:线程共享变量可见性原理

0、线程安全性&#xff1a;线程安全性包括两个方面&#xff0c;①可见性。②原子性。 0.1、线程之间的通信&#xff1a;线程的通信是指线程之间以何种机制来交换信息。在命令式编程中&#xff0c;线程之间的通信机制有两种共享内存和消息传递。 &#xff08;1&#xff09;在共…

Coursera自动驾驶课程第7讲:Vehicle Lateral Control

在上一讲《Coursera自动驾驶课程第6讲&#xff1a;Vehicle Longitudinal Control》中我们了解了如何使用PID算法进行汽车纵向控制。 本讲我们继续学习新的模块&#xff1a;汽车横向控制。具体地&#xff0c;我们将学习三种控制算法&#xff1a;Pure pursuit&#xff0c;Stanle…

【CodeForces - 697C】Lorenzo Von Matterhorn(二叉树,思维)

题干&#xff1a; 巴尼住在NYC。NYC具有从1开始的正整数编号的无数个交叉点。在交叉点 i 和 2i 之间以及 i和 2i  1 之间存在双向道路&#xff0c;对任意整数 i 都满足。在任意两点之间都有且只有一条最短路。 最初任何人都可以通过任何道路免费。 但是后来发生了 q 个事件。…

Coursera自动驾驶课程第8讲:Basics of 3D Computer Vision

在上一讲《Coursera自动驾驶课程第7讲&#xff1a;Vehicle Lateral Control》中我们了解了如何对汽车进行横向控制。 本课程第一个篇章就暂时告一段落了&#xff0c;接下来我们开始学习新的篇章。 课程第二个篇章是状态估计和定位模块。不过在这里我做了一下调整&#xff0c;我…

volatile和synchronized的区别与联系

这个可能是最好的对比volatile和synchronized作用的文章了。volatile是一个变量修饰符&#xff0c;而synchronized是一个方法或块的修饰符。所以我们使用这两种关键字来指定三种简单的存取变量的方式。 int i1; int geti1() { return i1; } volati…

【CodeForces - 628C】Bear and String Distance(贪心,构造)

Description 定义两个小写字母之间的距离为这两个字母在字母表中的距离&#xff0c;如dis(a,z)25,dis(a,c)2&#xff0c;两个长度相同串的距离为这两个串对应位置字母距离之和。现给出一个长度为n的串s和一个距离k&#xff0c;问是否存在一个长度为n的串ss&#xff0c;使得dis…

Coursera自动驾驶课程第9讲:Visual Features Detection Description and Matching

在上一讲《Coursera自动驾驶课程第8讲&#xff1a;Basics of 3D Computer Vision》中我们学习了计算机视觉基本知识。 本讲我们将学习计算机视觉中的视觉特征模块。 B站视频链接&#xff1a;https://www.bilibili.com/video/BV1PE411D72p 文章目录1. Introduction to Image f…

【CodeForces - 514C】Watto and Mechanism(字符串哈希)

题干&#xff1a; 输入n个字符串&#xff0c;然后进行m次询问&#xff0c;每次询问输入一个字符串&#xff0c;问n个字符串中是否存在与当前输入的字符串长度相等&#xff0c;并且刚好有且仅有一个位置的字符不同。存在则输出YES&#xff0c;不存在输出NO。 Examples Input …

并发编程(原子性、可见性、一致性)

1、原子性&#xff08;Atomicity&#xff09; 原子性是指在一个操作中就是cpu不可以在中途暂停然后再调度&#xff0c;既不被中断操作&#xff0c;要不执行完成&#xff0c;要不就不执行。 如果一个操作时原子性的&#xff0c;那么多线程并发的情况下&#xff0c;就不会出现变…

Coursera自动驾驶课程第10讲:Feedforward Neural Networks

在上一讲《Coursera自动驾驶课程第9讲&#xff1a;Visual Features Detection Description and Matching》中我们学习了如何进行图像特征检测&#xff0c;特征匹配以及如何构建视觉里程计来估计相机的运动。 本讲我们将学习神经网络模块&#xff0c;关于神经网络或深度学习网上…

【CodeForces - 514D】R2D2 and Droid Army(二分+滑动窗口ST表,或 尺取+单调队列或STLmultiset)

题干&#xff1a; An army of n droids is lined up in one row. Each droid is described by m integers a1, a2, ..., am, where ai is the number of details of the i-th type in this droids mechanism. R2-D2 wants to destroy the sequence of consecutive droids o…

守护进程和守护线程

对于JAVA而言&#xff0c;一般一个应用程序只有一个进程——JVM。除非在代码里面另外派生或者开启了新进程。 而线程&#xff0c;当然是由进程开启的。当开启该线程的进程离开时&#xff0c;线程也就不复存在了。 所以&#xff0c;对于JAVA而言&#xff0c;线程是完全可以由自…

Coursera自动驾驶课程第11讲:2D Object Detection

在上一讲《Coursera自动驾驶课程第10讲&#xff1a;Feedforward Neural Networks》中我们学习了神经网络的基础知识&#xff0c;包括损失函数&#xff0c;梯度下降&#xff0c;正则化&#xff0c;卷积网络等。 本讲我们将学习深度学习的一个重要应用&#xff1a;图像目标检测。…

【CodeForces - 460C】Present(二分+树状数组)

题干&#xff1a; 给定N朵花的原先的高度&#xff0c;从左到右排列&#xff0c;最多浇水m天&#xff0c;每天只能浇一次&#xff0c;每次使得连续的w朵花的高度增长1&#xff0c;问最后最矮的花的高度最高是多少。 Examples Input 6 2 3 2 2 2 2 1 1Output 2Input 2 5 1 …