Submission #493701

# Submission time Handle Problem Language Result Execution time Memory
493701 2021-12-12T16:06:45 Z _Monkey_ Brunhilda’s Birthday (BOI13_brunhilda) C++17
Compilation error
0 ms 0 KB
#include<bits/stdc++.h>
using namespace std;
 
#define ll long long
#define el '\n'
#define ld long double
const int maxn=1e7+1,nn=1e5+1;
 
int f[maxn],oo,a[nn],n,m,q,p;
int take(int z){
    if(f[z]>=0) return f[z];
  	ll maxx=z%a[0];
    for(int i=1;i<m;++i) maxx=max(maxx,z%a[i]);
  	f[z]=min(oo,take(z-maxx)+1);
    return f[z];
}
int main(){
    //freopen("T.INP","r",stdin);
    //freopen("T.OUT","w",stdout);
    ios_base::sync_with_stdio(0);cin.tie(0);
    memset(f,-1,sizeof f);
    oo=1e9;
    f[0]=0;
    cin >> m >> q;
    for(int i=0;i<m;++i) cin >> a[i];
    while(q--){
        cin >> n;
        p=take(n);
        if(p>=oo) cout << 'o' << 'o' << el;
        else cout << p << el;
    }
    return 0;
}

Compilation message

brunhilda.cpp: In function 'int take(int)':
brunhilda.cpp:13:46: error: no matching function for call to 'max(long long int&, int)'
   13 |     for(int i=1;i<m;++i) maxx=max(maxx,z%a[i]);
      |                                              ^
In file included from /usr/include/c++/10/bits/specfun.h:45,
                 from /usr/include/c++/10/cmath:1927,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:41,
                 from brunhilda.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:
brunhilda.cpp:13:46: note:   deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int')
   13 |     for(int i=1;i<m;++i) maxx=max(maxx,z%a[i]);
      |                                              ^
In file included from /usr/include/c++/10/bits/specfun.h:45,
                 from /usr/include/c++/10/cmath:1927,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:41,
                 from brunhilda.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:
brunhilda.cpp:13:46: note:   deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int')
   13 |     for(int i=1;i<m;++i) maxx=max(maxx,z%a[i]);
      |                                              ^
In file included from /usr/include/c++/10/algorithm:62,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
                 from brunhilda.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:
brunhilda.cpp:13:46: note:   mismatched types 'std::initializer_list<_Tp>' and 'long long int'
   13 |     for(int i=1;i<m;++i) maxx=max(maxx,z%a[i]);
      |                                              ^
In file included from /usr/include/c++/10/algorithm:62,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
                 from brunhilda.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:
brunhilda.cpp:13:46: note:   mismatched types 'std::initializer_list<_Tp>' and 'long long int'
   13 |     for(int i=1;i<m;++i) maxx=max(maxx,z%a[i]);
      |                                              ^