种树(贪心)

题目链接:#10001. 「一本通 1.1 例 2」种树 - 题目 - LibreOJ (loj.ac)​​​​​

思路:与活动安排排序方式相同,将路段e按从小到大进行sort排序。首先统计每个区间所选种树点的个数,如果所选点的个数等于所需至少选的个数,直接continue到下一个区间。因为所给路段的区间可以交叉,所以从右端点添加没有达到题目所要选的最少个数,最后判断每个区间是否满足要求,输出答案。

AC代码

#include <bits/stdc++.h>

#define endl "\n"
#define pb push_back
#define int long long
#define inf 0x3f3f3f3f
#define all(v) v.begin(), v.end()

using namespace std;

const int N = 3e4 + 10;
int n, h;
bool st[N];
struct pp
{
    int b, e, t;
} q[N];

bool cmp(pp x, pp y) {
    return x.e < y.e;
}

signed main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cin >> n >> h;
    for (int i = 1; i <= h; i++) {
        cin >> q[i].b >> q[i].e >> q[i].t;
    }
    sort(q + 1, q + 1 + h, cmp);
    for (int i = 1; i <= h; i++) {
        int cnt = 0;
        for (int j = q[i].b; j <= q[i].e; j++) {
            if (st[j]) cnt++;
            if (cnt == q[i].t) break;
        }
        if (cnt < q[i].t) {
            for (int j = q[i].e; cnt < q[i].t; j--) {
                if (!st[j]) {
                    st[j] = true;
                    cnt++;
                }
            }
        }
    }
    int ans = 0;
    for (int i = 1; i <= n; i++) {
        if (st[i]) ans++;
    }
    cout << ans;
    return 0 ^ 0;
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

এ᭄清风ꦿﻬ

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

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

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

打赏作者

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

抵扣说明:

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

余额充值