Codeforces Round #219 (Div. 2 )-----贪心--思维

 Counting Kangaroos is Fun
Time Limit:1000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u

Description

There are n kangaroos with pockets. Each kangaroo has a size (integer number). A kangaroo can go into another kangaroo's pocket if and only if the size of kangaroo who hold the kangaroo is at least twice as large as the size of kangaroo who is held.

Each kangaroo can hold at most one kangaroo, and the kangaroo who is held by another kangaroo cannot hold any kangaroos.

The kangaroo who is held by another kangaroo cannot be visible from outside. Please, find a plan of holding kangaroos with the minimal number of kangaroos who is visible.

Input

The first line contains a single integer — n(1 ≤ n ≤ 5·105). Each of the next n lines contains an integer si — the size of the i-th kangaroo (1 ≤ si ≤ 105).

Output

Output a single integer — the optimal number of visible kangaroos.

Sample Input

Input
8
2
5
7
6
9
8
4
2
Output
5
Input
8
9
1
6
2
6
5
8
3
Output
5

就是给n各袋鼠的袋子大小,一个袋鼠袋子是另一个的两倍以上是就可以把小的装进去,装进去之后从外边就看不到了,每个袋鼠只能装一个,问最少能看见多少个,升序排列,从中间开始,前半段与后半段比较就可以了


#include<cstdio>
#include<algorithm>
using namespace std;
#define maxn 500005
int s[maxn];
int main(){
	int n;
	scanf("%d", &n);
	for(int i = 0; i < n; i++){
		scanf("%d", &s[i]);
	}
	sort(s, s+n);
	for(int i = n/2 - 1; i >= 0; i--){
		if(s[i]*2 <= s[n-1]){
			n--;
		}
	}
	printf("%d\n", n);
	return 0;
}


### Codeforces Round 1002 Div. 2 概述 Codeforces Round 1002 Div. 2 是一场面向较低评级选手的比赛,通常包含五道不同难度级别的编程挑战题。这类比赛旨在测试参赛者的算法思维能力和编码技巧。 对于该轮的具体题目及其解答方案,在当前提供的参考资料中并未直接提及此编号的比赛详情[^1]。然而,基于以往相似赛事的经验以及平台的一贯风格,下面给出一般性的描述和可能涉及的解法思路: #### A - Example Problem Title 假设A题是一个较为简单的入门级问题,它可能会考察基础的数据结构应用或是简单逻辑推理能力。解决方案往往依赖于清晰理解题目背景并运用基本循环控制语句实现目标功能。 ```cpp #include <iostream> using namespace std; void solve() { // 假设输入处理部分 int input; cin >> input; // 解决核心业务逻辑 if (input condition) { cout << "Expected Output"; } } ``` #### B - Another Simple Task B题则会稍微增加一点复杂度,比如引入数组操作或者是字符串匹配等内容。此时需要注意边界条件检查,并合理利用STL库函数简化代码编写过程。 ```cpp // 示例伪代码片段 vector<int> numbers; for (auto& num : numbers) { process(num); } if (!numbers.empty()) { do_something_with(numbers.back()); } ``` #### C - Intermediate Level Challenge 进入C级别之后,题目将会更加注重算法设计方面的要求,像贪心策略、动态规划等概念会被频繁使用到。这里的关键在于找到最优子结构性质来构建递推关系式求解最终答案。 ```cpp dp[0][0] = initial_value; for (size_t i = 1; i <= N; ++i) { dp[i][j] = min(dp[i-1][j], cost_of_transition + dp[i-1][prev_state]); } cout << result_based_on_dp_table; ``` #### D/E - Advanced Problems 最后两道高阶难题往往会涉及到图论模型建立、树形DP变换或者其他高级数据结构的应用场景分析。解决这些问题不仅考验个人技术功底更需要丰富的实战经验积累才能顺利攻克难关。 由于缺乏针对Codeforces Round 1002 Div. 2 的具体资料支持,上述内容仅作为参考模板展示如何按照惯例去构思各个层次的任务特点与应对方法[^2]。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值