이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
typedef long long ll;
typedef unsigned long long ull;
using namespace std;
const int maxn=200005;
int n,m;
int v[2001];
int w[2001];
int dp[maxn];
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL); cout.tie(NULL);
cin >> n >> m;
int sum=0;
int pos=1;
for (int i=1; i<=m; i++) {
int k;
cin >> v[pos] >> w[pos] >> k;
sum+=k;
for (int j=pos+1; j<pos+k; j++) {
v[j]=v[pos];
w[j]=w[pos];
}
pos=pos+k;
}
for (int i=1; i<=maxn-1; i++) {
dp[i]=1e9;
}
for (int i=1; i<=sum; i++) {
for (int j=maxn-1; j>=0; j--) {
if (dp[j]+w[i]<=n) {
dp[j+v[i]]=min(dp[j+v[i]],dp[j]+w[i]);
}
}
}
for (int i=maxn-1; i>=0; i--) {
if (dp[i]!=1e9) {
cout << i;
break;
}
}
}
# | 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... |