# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
782437 | christinelynn | Knapsack (NOI18_knapsack) | C++17 | 89 ms | 5064 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll, ll> pll;
const ll MAXT = 2e3 + 5;
ll t, n, dp[MAXT];
vector<pll> vec[MAXT];
// {Li, Ki}
vector<pll> items;
// {Li, Ei}
int main(){
dp[0] = 0;
cin >> t >> n;
for (int i = 0; i < n; ++i)
{
ll tmpa, tmpb, tmpc;
cin >> tmpa >> tmpb >> tmpc;
vec[tmpb].push_back({tmpa, tmpc});
}
for (int i = 1; i <= t; ++i)
{
if (vec[i].empty())
{
continue ;
}
sort(vec[i].begin(), vec[i].end());
ll cnt = t / i;
while(cnt > 0) {
if (vec[i].back().second == 0)
{
vec[i].pop_back();
if (vec[i].empty())
{
break ;
}
}
items.push_back({vec[i].back().first, i});
vec[i].back().second--;
cnt--;
}
}
for (int i = 0; i < items.size(); ++i)
{
pll now = items[i];
// {Li, Ei}
// cout << now.first << " " << now.second << "\n";
for (int j = t; j >= now.second; --j)
{
dp[j] = max(dp[j], dp[j-now.second] + now.first);
}
}
// for (int i = 0; i <= t; ++i)
// {
// cout << dp[i] << " ";
// }
// cout << "\n";
cout << dp[t] << "\n";
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... |