C. Anya and Ghosts(贪心)

传送门

  • 题意:有m个鬼,每个鬼有一个到达的时间,每个鬼达到后持续1秒,然后离开。在每个鬼达到的时候需要至少r根蜡烛亮着,每根蜡烛亮t秒,点燃一根蜡烛需要1秒,熄灭后不能再使用。
  • 题解:蜡烛需要在鬼到达的前一秒点燃,并且是连续点燃,这样可以尽可能的利用蜡烛持续的时间(贪心)。开一个数组记录每个蜡烛的点燃时刻,每次需判断数组中未熄灭的数量,若不足r,则需要另外点燃。(很妙啊)
#include<cstdio>
#include<queue>
#include<set>
#include<cstdlib>
#include<string.h>
#include<string>
#include<iostream>
#include<cmath>
#include<map>
#include<algorithm>
#define endl "\n"
#define IOS ios::sync_with_stdio(0), cin.tie(0),cout.tie(0)
#define ft first
#define sd second
#define pll pair<ll, ll>
#define pii pair<int, int>
#define ll long long int
#define mt(a,b) memset(a, b, sizeof a)
//#define int long long
const int inf = 0x3f3f3f3f;
const int INF = 0x7fffffff;
using namespace std;
const int N = 2e5 + 7, M = 1e6;
int a[400], v[400];
int main()
{
	IOS;
	int m, t, r; cin >> m >> t >> r;
	for (int i = 0; i < m; i++) cin >> a[i];

	if (t < r)
	{
		cout << -1 << endl;
		return 0;
	}

	int ans = 0;
	for (int i = 0; i < m; i++)
	{
		int now = r;
		for (int j = 0; j < ans; j++)
			if (a[i] - v[j] <= t && now > 0)
				now--;

		for (int j = now; j > 0; j--)
			v[ans++] = a[i] - j;
	}
	cout << ans << endl;


	return 0;
}

大佬链接

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

to cling

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值