Solution: Organizing a Lottery

Solutions for the Points and Segments Problem.

Solution 1: Sorting all points

Consider an example with n=2n = 2 segments [l1,r1]=[4,10],[l2,r2]=[1,8][l_1,r_1] = [4,10], [l_2,r_2] = [1,8] and m=3m=3 points p1=11,p2=7,p3=3p_1 =11,p_2 =7,p_3 =3:

Let’s initialize numberOfSegmentsnumberOfSegments to 00 and scan the line above from the left to the right. We will increase (or decrease) numberOfSegmentsnumberOfSegments by 11 each time we encounter a left (or right) endpoint of an interval. Initially, numberOfSegmentsnumberOfSegments ...