# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
447010 | cpp219 | Knapsack (NOI18_knapsack) | C++14 | 74 ms | 3692 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimization O2
#pragma GCC optimization "unroll-loop"
#pragma target ("avx2")
#include <bits/stdc++.h>
#define ll int
#define ld long double
#define fs first
#define sc second
using namespace std;
typedef pair<ll,ll> LL;
const ll N = 2e3 + 9;
const ll Log2 = 21;
const ll inf = 1e9 + 7;
vector<LL> v[N];
ll s,n,a,b,c,dp[N];
int main(){
ios_base::sync_with_stdio(NULL); cin.tie(0); cout.tie(0);
#define task "tst"
if (fopen(task".INP","r")){
freopen(task".INP","r",stdin);
//freopen(task".OUT","w",stdout);
}
cin>>s>>n;
for (ll i = 1;i <= n;i++){
cin>>a>>b>>c;
v[b].push_back({a,c});
}
for (ll i = 1;i <= s;i++){
sort(v[i].begin(),v[i].end(),greater<LL> ());
ll total = i;
for (auto now : v[i]){
if (total > s) break;
for (ll j = 1;j <= now.sc&&total <= s;j++,total += i)
for (ll k = s;k >= i;k--)
dp[k] = max(dp[k],dp[k - i] + now.fs);
}
}
cout<<dp[s];
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |