贪心,CF 865B - Ordering Pizza

目录

一、题目

1、题目描述

2、输入输出

2.1输入

2.2输出

3、原题链接

二、解题报告

1、思路分析

2、复杂度

3、代码详解


一、题目

1、题目描述

2、输入输出

2.1输入

2.2输出

3、原题链接

865B - Ordering Pizza


二、解题报告

1、思路分析

如果我们不考虑披萨数目的限制,我们贪心的为每个人分配最优披萨,会有什么结果?
最多多买一个披萨,因为每个人要的披萨的片数是固定的

如果买多了,最多调整 部分人 1->2 或者 2->1
不会同时 1<->2,不然的话我们总能取消1->2 或者 2->1 来减少代价

那么对于两种方案,不管调谁,都去调代价最小的即可

2、复杂度

时间复杂度:O(NlogN) 空间复杂度:O(NlogN)

3、代码详解

 ​
#include <bits/stdc++.h>

// #define DEBUG

using u32 = unsigned;
using i64 = long long;
using u64 = unsigned long long;

constexpr int inf32 = 1E9 + 7;
constexpr i64 inf64 = 1E18 + 7;

void solve() {
    int n, S;
    std::cin >> n >> S;

    std::vector<int> s(n), a(n), b(n);

    i64 cnt1 = 0, cnt2 = 0;
    i64 ans = 0;

    std::vector<int> g1, g2;

    for (int i = 0; i < n; ++ i) {
        std::cin >> s[i] >> a[i] >> b[i];
        if (a[i] > b[i]) {
            g1.push_back(i);
            cnt1 += s[i];
            ans += 1LL * s[i] * a[i];
        } else {
            g2.push_back(i);
            cnt2 += s[i];
            ans += 1LL * s[i] * b[i];
        }
    }

    if ((cnt1 + cnt2 + S - 1) / S == (cnt1 + S - 1) / S + (cnt2 + S - 1) / S) {
        std::cout << ans << '\n';
        return;
    }

    int to2 = cnt1 % S, to1 = cnt2 % S;
    i64 wto2 = 0, wto1 = 0;

    std::ranges::sort(g1, [&](int i, int j){
        return a[i] - b[i] < a[j] - b[j];
    });

    for (int i : g1) {
        int t = std::min(to2, s[i]);
        to2 -= t;
        wto2 += 1LL * t * (b[i] - a[i]);
    }

    std::ranges::sort(g2, [&](int i, int j){
        return b[i] - a[i] < b[j] - a[j];
    });

    for (int i : g2) {
        int t = std::min(to1, s[i]);
        to1 -= t;
        wto1 += 1LL * t * (a[i] - b[i]);
    }


    std::cout << ans + std::max(wto1, wto2) << '\n';
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);

#ifdef DEBUG
    int cur = clock();
    freopen("in.txt", "r", stdin);
    freopen("out.txt", "w", stdout);
#endif

    int t = 1;
    // std::cin >> t;

    while (t--) {
        solve();
    }
#ifdef DEBUG
    std::cerr << "run-time: " << clock() - cur << '\n';
#endif
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

EQUINOX1

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

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

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

打赏作者

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

抵扣说明:

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

余额充值