zoukankan      html  css  js  c++  java
  • Codeforces Round #242 (Div. 2) B. Megacity

    The administration of the Tomsk Region firmly believes that it's time to become a megacity (that is, get population of one million). Instead of improving the demographic situation, they decided to achieve its goal by expanding the boundaries of the city.

    The city of Tomsk can be represented as point on the plane with coordinates (0; 0). The city is surrounded with n other locations, the i-th one has coordinates (xi, yi) with the population of ki people. You can widen the city boundaries to a circle of radius r. In such case all locations inside the circle and on its border are included into the city.

    Your goal is to write a program that will determine the minimum radius r, to which is necessary to expand the boundaries of Tomsk, so that it becomes a megacity.

    Input

    The first line of the input contains two integers n and s (1 ≤ n ≤ 103; 1 ≤ s < 106) — the number of locatons around Tomsk city and the population of the city. Then n lines follow. The i-th line contains three integers — the xi and yi coordinate values of the i-th location and the number ki of people in it (1 ≤ ki < 106). Each coordinate is an integer and doesn't exceed 104 in its absolute value.

    It is guaranteed that no two locations are at the same point and no location is at point (0; 0).

    Output

    In the output, print "-1" (without the quotes), if Tomsk won't be able to become a megacity. Otherwise, in the first line print a single real number — the minimum radius of the circle that the city needs to expand to in order to become a megacity.

    The answer is considered correct if the absolute or relative error don't exceed 10 - 6.

    Sample test(s)
    Input
    4 999998
    1 1 1
    2 2 1
    3 3 1
    2 -2 1
    
    Output
    2.8284271
    
    Input
    4 999998
    1 1 2
    2 2 1
    3 3 1
    2 -2 1
    
    Output
    1.4142136
    
    Input
    2 1
    1 1 999997
    2 2 1
    
    Output
    -1
    题意:n个城市。每一个城市有坐标和人口。求以远点为圆心的最小的圆使得人口总数达到上限

    思路:贪心

    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <map>
    #include <algorithm>
    #include <cmath>
    using namespace std;
    const int maxn = 1010;
    const int inf = 1e6;
    
    map<double, int> mp;
    
    double dis(int x, int y) {
    	return sqrt(x*x+y*y);
    }
    
    int main() {
    	int n, s, x, y, k;
    	scanf("%d%d", &n, &s);
    	for (int i = 0; i < n; i++) {
    		scanf("%d%d%d", &x, &y, &k);
    		mp[dis(x, y)] += k;
    	}	
    
    	map<double, int>::iterator it;
    	double ans = -1;
    	for (it = mp.begin(); it != mp.end(); it++) {
    		if (s >= inf)
    			break;
    		s += it->second;
    		ans = it->first;
    	}
    
    	if (s < inf)
    		printf("-1
    ");
    	else printf("%.7lf
    ", ans);
    }
    



  • 相关阅读:
    【BZOJ 4631】4631: 踩气球 (线段树)
    【BZOJ 4148】 4148: [AMPPZ2014]Pillars (乱搞)
    【LYOI 212】「雅礼集训 2017 Day8」价(二分匹配+最大权闭合子图)
    【BZOJ 4104】 4104: [Thu Summer Camp 2015]解密运算 (智商)
    【BZOJ 4103】 4103: [Thu Summer Camp 2015]异或运算 (可持久化Trie)
    【BZOJ 3747】 3747: [POI2015]Kinoman (线段树)
    【BZOJ 3997】 3997: [TJOI2015]组合数学 (DP| 最小链覆盖=最大点独立集)
    【BZOJ 3727】 3727: PA2014 Final Zadanie (递推)
    【BZOJ 3442】 3442: 学习小组 (最大费用流)
    【BZOJ 3218】 3218: a + b Problem(最小割+可持久化线段树)
  • 原文地址:https://www.cnblogs.com/mengfanrong/p/5222273.html
Copyright © 2011-2022 走看看