이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#define fi first
#define se second
#define pii pair<int, int>
#define pb push_back
#define vi vector<int>
#define all(x) x.begin(), x.end()
using namespace std;
using namespace __gnu_pbds;
using ll = long long int;
using ull = unsigned long long int;
constexpr ll mod = 1e9 + 7;
constexpr ll INF = LONG_LONG_MAX;
int dx[4] = {-1, 0, 1, 0}, dy[4] = {0, 1, 0, -1};
string moves = "URDL";
int main()
{
//tree<ll, null_type,less<ll>, rb_tree_tag,tree_order_statistics_node_update> q;
/*freopen("problemname.in", "r", stdin);
freopen("problemname.out", "w", stdout);*/
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
ll x, n, ans = 0, a, b, c;
cin >> x >> n;
vector<ll> arr[x + 1];
while(n--) {
cin >> a >> b >> c;
while(arr[b].size() <= x && c--) {
arr[b].pb(a);
}
}
for(ll i = 1;i<=x;++i) {
sort(all(arr[i]));
reverse(all(arr[i]));
}
ll dp[x + 1][x + 1];
memset(dp, 0, sizeof dp);
for(ll i = 1;i<=x;++i) {
for(ll j = 0;j<=x;++j) {
dp[i][j] = max(dp[i][j], dp[i - 1][j]);
ll cnt = 1, lim = arr[i].size(), add = 0;
while(j - cnt*i >= 0 && lim--) {
add+=arr[i].at(cnt - 1);
dp[i][j] = max(dp[i][j], dp[i - 1][j - cnt*i] + add);
}
ans = max(ans, dp[i][j]);
}
}
cout << ans << endl;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
knapsack.cpp: In function 'int main()':
knapsack.cpp:35:29: warning: comparison of integer expressions of different signedness: 'std::vector<long long int>::size_type' {aka 'long unsigned int'} and 'll' {aka 'long long int'} [-Wsign-compare]
35 | while(arr[b].size() <= x && c--) {
| ~~~~~~~~~~~~~~^~~~
# | 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... |