首页 > 代码库 > UVA1316- Supermarket
UVA1316- Supermarket
点击打开链接
题意:有N个物品,每个物品在都有一个截止日期,如果在截止日期之前(包括截止日期)卖出将会获得相应的利润,卖出物品需要一个单位时间,问最多能获得多少利润?
思路:将利润从大到小排序,尽量在该物单位时间出售利润大的物品,这样就能使得从利润达到最大。
#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> using namespace std; const int MAXN = 10005; struct product{ int money, t; }p[MAXN]; int n, vis[MAXN]; int cmp(product a, product b) { return a.money > b.money; } int main() { while (scanf("%d", &n) == 1) { for (int i = 0; i < n; i++) scanf("%d%d", &p[i].money, &p[i].t); sort(p, p + n, cmp); memset(vis, 0, sizeof(vis)); long long ans = 0; for (int i = 0; i < n; i++) { for (int j = p[i].t; j >= 1; j--) { if (vis[j] == 0) { ans += p[i].money; vis[j] = 1; break; } } } cout << ans << endl; } return 0; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。