# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
846944 | batsukh2006 | Knapsack (NOI18_knapsack) | C++17 | 91 ms | 4944 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
const ll MOD = 1000000007;
int main()
{
ll n,s;
cin>>s>>n;
vector<ll> dp(s+1,0);
vector<vector<pair<ll,ll>>> store(s+1);
ll v,w,k;
for (ll i = 0; i < n; i++)
{
cin>>v>>w>>k;
store[w].push_back({v,k});
}
for (auto &st:store)
{
sort(st.begin(),st.end());
reverse(st.begin(),st.end());
}
vector<pair<ll,ll>> final_store;
ll ind=0,x=0;
for (ll i = 1; i <= s; i++)
{
ind=0;
for (ll j = 0; j <= (s/i); j++)
{
if(ind >= store[i].size()) break;
final_store.push_back({i,store[i][ind].first});
if(! --store[i][ind].second) ind++;
}
}
for(auto i : final_store){
for(int j = s; j >= i.first; j--) dp[j] = max(dp[j],dp[j-i.first]+i.second);
}
cout<<dp[s]<<endl;
return 0;
}
컴파일 시 표준 에러 (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... |