codeforces 192D Demonstration

题意:相当难读的题,政府有n块场地,示威者要申请m天的场地进行示威,场地是m块不同的,政府有k 元,每当示威者进行一次申请,政府可以付出对应的费用拒绝,至少要保证把最坏的 (也就是第n块场地)给示威者,场地好坏从1-n递减,问示威者最好能得到哪块场地


直接贪心就行,先判断钱能否拒绝所有的场地,具体看代码

#include <iostream>
#include <map>
#include <cstring>
#include <cstdio>
#include <algorithm>
#define rep(i, j, k) for(ll i = j; i <= k; i++)
#define ll long long
#define maxn 1000009
#define inf 0x7fffffff

using namespace std;

int n, m;
ll tot, a[maxn], b[maxn];

bool cmp (ll x, ll y)
{
	return x > y;
}

int main ()
{
	cin >> n >> m >> tot;
	if (m == n)
	{
		cout << n << endl;
		return 0;
	}
	rep (i, 1, n)
		cin >> a[i];
	rep (i, 1, n - 1)
		b[i] = a[i];
	sort (b + 1, b + n, cmp);
	ll num = 0;
	rep (i, 1, m - 1)
		num += b[i];
	rep (i, 1, n)
		if (a[i] >= b[m])
		{
			if (num + b[m] > tot)
			{
				cout << i << endl;
				return 0;
			}
		}
		else
			if (num + a[i] > tot)
			{
				cout << i << endl;
				return 0;
			}
	cout << n << endl;
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值