排序题

蒙自市凤凰小学又阝十尃亻二  •  1年前


include <bits/stdc++.h>

using namespace std; long long a[100007];

int main() {

long long n, m, x, y, ans = 0, num = 0;
cin >> n >> m;
if (m == 0) {
	cout << 0;
	return 0;
}
for (int i = 0; i < n; i++) {
	cin >> x >> y;
	a[i] = x - y;
}
sort(a, a + n);
for (int i = n - 1; i >= 0; i--) {
	ans += a[i];
	num += 1;
	if (ans >= m) {
		cout << num;
		return 0;
	}
}
cout << n;
return 0;

}


评论:

石屏杨梅给好吃,给是还要吃,好吃带点来给我噶,开远一中马吉豪


楊卍广  •  24天前

请先登录,才能进行评论