CF128E.Birthday

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Anna's got a birthday today. She invited many guests and cooked a huge (nearly infinite) birthday cake decorated by nn banana circles of different sizes. Maria's birthday is about to start in 7 minutes too, and while Anna is older, she decided to play the boss a little. She told Maria to cut the cake by kk straight-line cuts (the cutting lines can intersect) to divide banana circles into banana pieces.

Anna has many guests and she wants everyone to get at least one banana piece. That's why she told Maria to make the total number of banana pieces maximum. It's not a problem if some banana pieces end up on the same cake piece — the key is to make the maximum number of banana pieces. Determine what result Maria will achieve.

输入格式

The first line contains two integers nn and kk — the number of banana circles and the number of cuts Maria should perform ( 1<=n<=10001<=n<=1000 , 1<=k<=1051<=k<=10^{5} ). Next nn lines contain the positions and sizes of the banana circles (all banana circles are round). On the cake the Cartesian coordinate system is defined. Each line contains three integers xx , yy and rr — the coordinates of the center of the corresponding banana piece and its radius ( 1000<=x,y<=1000-1000<=x,y<=1000 , 1<=r<=10001<=r<=1000 ).

It is guaranteed that the banana circles do not intersect, do not touch each other and do not overlap with each other.

Pretest 10 is big test with n=k=1000n=k=1000 .

输出格式

Print the only integer — the largest number of banana pieces that Maria can get after she performs the kk straight-line cuts.

Please do not use the %lld specificator to read or write 64-bit integers in C++. It is preferred to use the cin, cout streams or the %I64d specificator.

输入输出样例

  • 输入#1

    1 1
    0 0 1
    

    输出#1

    2
    
  • 输入#2

    3 1
    0 0 1
    3 0 1
    6 0 1
    

    输出#2

    6
    
  • 输入#3

    1 3
    0 0 1
    

    输出#3

    7
    
首页