Submission #638890

#TimeUsernameProblemLanguageResultExecution timeMemory
638890luanaamorimFinancial Report (JOI21_financial)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> #define MAX (int)(1e6 + 5) #define ll long long #define esq(x) (x<<1) #define dir(x) ((x<<1)|1) using namespace std; ll n, k, h[MAX], dp[MAX], resp; int main() { cin >> n >> k; for (int i = 1; i <= n; i++) { cin >> h[i]; dp[i] = 1; } for (int i = 1; i <= n; i++) { for (int j = max(1, i-k); j < i; j++) { if (h[j]<h[i]) dp[i] = max(dp[i], dp[j]+1); } resp = max(resp, dp[i]); } cout << resp << endl; }

Compilation message (stderr)

Main.cpp: In function 'int main()':
Main.cpp:22:26: error: no matching function for call to 'max(int, long long int)'
   22 |   for (int j = max(1, i-k); j < i; j++)
      |                          ^
In file included from /usr/include/c++/10/bits/char_traits.h:39,
                 from /usr/include/c++/10/ios:40,
                 from /usr/include/c++/10/istream:38,
                 from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from Main.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:254:5: note: candidate: 'template<class _Tp> constexpr const _Tp& std::max(const _Tp&, const _Tp&)'
  254 |     max(const _Tp& __a, const _Tp& __b)
      |     ^~~
/usr/include/c++/10/bits/stl_algobase.h:254:5: note:   template argument deduction/substitution failed:
Main.cpp:22:26: note:   deduced conflicting types for parameter 'const _Tp' ('int' and 'long long int')
   22 |   for (int j = max(1, i-k); j < i; j++)
      |                          ^
In file included from /usr/include/c++/10/bits/char_traits.h:39,
                 from /usr/include/c++/10/ios:40,
                 from /usr/include/c++/10/istream:38,
                 from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from Main.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:300:5: note: candidate: 'template<class _Tp, class _Compare> constexpr const _Tp& std::max(const _Tp&, const _Tp&, _Compare)'
  300 |     max(const _Tp& __a, const _Tp& __b, _Compare __comp)
      |     ^~~
/usr/include/c++/10/bits/stl_algobase.h:300:5: note:   template argument deduction/substitution failed:
Main.cpp:22:26: note:   deduced conflicting types for parameter 'const _Tp' ('int' and 'long long int')
   22 |   for (int j = max(1, i-k); j < i; j++)
      |                          ^
In file included from /usr/include/c++/10/algorithm:62,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
                 from Main.cpp:1:
/usr/include/c++/10/bits/stl_algo.h:3480:5: note: candidate: 'template<class _Tp> constexpr _Tp std::max(std::initializer_list<_Tp>)'
 3480 |     max(initializer_list<_Tp> __l)
      |     ^~~
/usr/include/c++/10/bits/stl_algo.h:3480:5: note:   template argument deduction/substitution failed:
Main.cpp:22:26: note:   mismatched types 'std::initializer_list<_Tp>' and 'int'
   22 |   for (int j = max(1, i-k); j < i; j++)
      |                          ^
In file included from /usr/include/c++/10/algorithm:62,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
                 from Main.cpp:1:
/usr/include/c++/10/bits/stl_algo.h:3486:5: note: candidate: 'template<class _Tp, class _Compare> constexpr _Tp std::max(std::initializer_list<_Tp>, _Compare)'
 3486 |     max(initializer_list<_Tp> __l, _Compare __comp)
      |     ^~~
/usr/include/c++/10/bits/stl_algo.h:3486:5: note:   template argument deduction/substitution failed:
Main.cpp:22:26: note:   mismatched types 'std::initializer_list<_Tp>' and 'int'
   22 |   for (int j = max(1, i-k); j < i; j++)
      |                          ^