#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
struct M {
double t,p,u;
}m[100010];
//vector<M>v;
bool cmp(M a,M b) {
|贪心 大于小于需求|1070 Mooncake (25分)
最新推荐文章于 2022-08-20 18:30:58 发布
本文介绍了一种基于C++的优化算法,通过比较结构体M中的u值对任务进行排序,以解决生产和需求分配问题。核心部分展示了如何计算u值并使用sort函数实现高效任务调度。最终目标是计算在满足需求的前提下,最小化总成本。
摘要由CSDN通过智能技术生成