이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <algorithm>
using namespace std;
struct Kue {
long long value, weight, stock;
};
int main() {
int s, n;
long long ans = 0;
cin >> s >> n;
Kue kue[n];
for (int i = 0; i < n; i++) {
cin >> kue[i].value >> kue[i].weight >> kue[i].stock;
}
sort(kue, kue + n, [](const Kue &a, const Kue &b) {
return a.value * b.weight > b.value * a.weight;
});
int k;
for (int i = 0; i < n; i++) {
if (kue[i].weight > s) continue;
k = min(s / kue[i].weight, kue[i].stock);
ans += k * kue[i].value;
s -= k * kue[i].weight;
}
cout << ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |