Submission #849065

#TimeUsernameProblemLanguageResultExecution timeMemory
849065AbdalrhmanMohammadKnapsack (NOI18_knapsack)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; #define FAST \ ios_base::sync_with_stdio(false); \ cin.tie(nullptr); \ cout.tie(nullptr); #define ll long long #define yn(tf) cout << (tf ? "YES\n" : "NO\n") #define Endl endl #define ld long double const ld PI = 3.14159265359; const ll MOD = 998244353; const ll N = 1e5 + 7; int s, n; int v[N], w[N], k[N]; vector<vector<int>> mem; int fun(int i, int rem) { if (rem < 0) return -1e15; if (i == n || rem == 0) return 0; ll &res = mem[i][rem]; if (res != -1) return res; res = fun(i + 1, rem); for (ll j = 1; j <= min(2000, k[i]); j++) res = max(res, fun(i + 1, rem - j * w[i]) + v[i] * j); return res; } int main() { FAST cin >> s >> n; mem = vector<vector<ll>>(n + 1, vector<ll>(s + 1)); for (int i = 0; i < n; i++) cin >> v[i] >> w[i] >> k[i]; for (int i = 0; i <= n; i++) for (int j = 0; j <= s; j++) mem[i][j] = -1; cout << fun(0, s); return 0; } /* */ // BEFORE coding are you sure you understood the statement correctly? // PLEASE do not forget to read the sample explanation carefully. // WATCH out for overflows & RTs in general. // TEST your idea or code on the corner cases. // ANALYZE each idea you have thoroughly.

Compilation message (stderr)

knapsack.cpp: In function 'int fun(int, int)':
knapsack.cpp:24:13: warning: overflow in conversion from 'double' to 'int' changes value from '-1.0e+15' to '-2147483648' [-Woverflow]
   24 |     return -1e15;
      |             ^~~~
knapsack.cpp:27:23: error: cannot bind non-const lvalue reference of type 'long long int&' to an rvalue of type 'long long int'
   27 |   ll &res = mem[i][rem];
      |                       ^
knapsack.cpp: In function 'int main()':
knapsack.cpp:39:52: error: no match for 'operator=' (operand types are 'std::vector<std::vector<int> >' and 'std::vector<std::vector<long long int> >')
   39 |   mem = vector<vector<ll>>(n + 1, vector<ll>(s + 1));
      |                                                    ^
In file included from /usr/include/c++/10/vector:72,
                 from /usr/include/c++/10/queue:61,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:86,
                 from knapsack.cpp:2:
/usr/include/c++/10/bits/vector.tcc:198:5: note: candidate: 'std::vector<_Tp, _Alloc>& std::vector<_Tp, _Alloc>::operator=(const std::vector<_Tp, _Alloc>&) [with _Tp = std::vector<int>; _Alloc = std::allocator<std::vector<int> >]'
  198 |     vector<_Tp, _Alloc>::
      |     ^~~~~~~~~~~~~~~~~~~
/usr/include/c++/10/bits/vector.tcc:199:42: note:   no known conversion for argument 1 from 'std::vector<std::vector<long long int> >' to 'const std::vector<std::vector<int> >&'
  199 |     operator=(const vector<_Tp, _Alloc>& __x)
      |               ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
In file included from /usr/include/c++/10/vector:67,
                 from /usr/include/c++/10/queue:61,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:86,
                 from knapsack.cpp:2:
/usr/include/c++/10/bits/stl_vector.h:709:7: note: candidate: 'std::vector<_Tp, _Alloc>& std::vector<_Tp, _Alloc>::operator=(std::vector<_Tp, _Alloc>&&) [with _Tp = std::vector<int>; _Alloc = std::allocator<std::vector<int> >]'
  709 |       operator=(vector&& __x) noexcept(_Alloc_traits::_S_nothrow_move())
      |       ^~~~~~~~
/usr/include/c++/10/bits/stl_vector.h:709:26: note:   no known conversion for argument 1 from 'std::vector<std::vector<long long int> >' to 'std::vector<std::vector<int> >&&'
  709 |       operator=(vector&& __x) noexcept(_Alloc_traits::_S_nothrow_move())
      |                 ~~~~~~~~~^~~
/usr/include/c++/10/bits/stl_vector.h:730:7: note: candidate: 'std::vector<_Tp, _Alloc>& std::vector<_Tp, _Alloc>::operator=(std::initializer_list<_Tp>) [with _Tp = std::vector<int>; _Alloc = std::allocator<std::vector<int> >]'
  730 |       operator=(initializer_list<value_type> __l)
      |       ^~~~~~~~
/usr/include/c++/10/bits/stl_vector.h:730:46: note:   no known conversion for argument 1 from 'std::vector<std::vector<long long int> >' to 'std::initializer_list<std::vector<int> >'
  730 |       operator=(initializer_list<value_type> __l)
      |                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~