이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int mxN = 1e5+5;
const int M = 1e9+7;
using vi = vector<int>;
#define ll long long
#define f first
#define s second
#define pii pair<int,int>
#define pb push_back
#define mp make_pair
#define el '\n'
ll s,n, a[mxN], b[mxN], c[mxN], dp[mxN][2005];
void solve() {
cin >> s >> n;
for (int i = 1; i <= n; ++i) cin >> b[i] >> a[i] >> c[i];
for (int i = 1; i <= n; ++i) {
for (int w = 1; w <= s; ++w) {
for (int j = 0; j <= c[i]; ++j) {
if (j*a[i] <= w) dp[i][j] = max(dp[i][w], dp[i][w - j*a[i]] + j * b[i]);
}
}
}
cout << dp[n][s];
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int t;
// cin >> t;
t = 1;
while(t--) {
solve();
}
return 0;
}
# | 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... |