PAT (Basic Level) 1020 月饼

题意

给出各种月饼的库存和总价,问给定总量下的月饼最大收益?

思路

按性价比贪心呗。结构体排序题,注意比较函数用乘法代替除法。

代码

#include <bits/stdc++.h>
using namespace std;
struct cake {
	double num, val;
};
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cout.tie(nullptr);
	int n, need;
	cin >> n >> need;
	vector<cake> a(n);
	for (int i = 0; i < n; ++i)
		cin >> a[i].num;
	for (int i = 0; i < n; ++i)
		cin >> a[i].val;
	sort(a.begin(), a.end(), [](cake lhs, cake rhs) {
		return lhs.val * rhs.num > rhs.val * lhs.num;
	});
	double ans = 0;
	for (auto e : a) {
		if (e.num >= need) {
			ans += 1.0 * e.val * need / e.num;
			need = 0;
			break;
		}
		else ans += e.val;
		need -= e.num;
	}
	cout << fixed << setprecision(2) << ans << '\n';
	return 0;
} 	

HINT

不定时更新更多题解,Basic Level 全部AC代码,详见 link ! ! !

PAT (Basic Level) 1020 月饼PAT (Basic Level) 1020 月饼 xavier_cai 发布了22 篇原创文章 · 获赞 15 · 访问量 185 私信 关注
上一篇:1020 月饼


下一篇:PAT (Advanced Level) 1020 Tree Traversals