답안 #423662

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
423662 2021-06-11T11:03:05 Z aymane7 Izvanzemaljci (COI21_izvanzemaljci) C++17
컴파일 오류
0 ms 0 KB
#include<bits/stdc++.h>
#pragma GCC optimize("O2")
#define deb(x) cout << #x << " = " << x <<endl
#define F first
#define S second
#define PB push_back
#define MP make_pair
#define all(c) c.begin(), c.end()
#define endl "\n"
#define sz(u) (int)(u.size())
#define L(x)(2*x)
#define R(x)(2*x+1)
#define M(x,y)((x+y)/2)
#define int long long
typedef long long ll;
typedef unsigned long long ull;
using namespace std;
void solve(){
    int n,k;
    cin>>n>>k;
    int mnx=1e16,mny=1e16,mxx=-1e16,mxy=-1e16;
    for(int i=0;i<n;i++){
        int x,y;
        cin>>x>>y;
        mxx=max(mxx,x);
        mxy=max(mxy,y);
        mnx=min(mnx,x);
        mny=min(mny,y);
    }
    cout<<mnx<<" "<<mny<<" "<<max({mxx-mnx,mxy-mny,1});
}
signed main(){
    ios::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    solve();
}

Compilation message

izvanzemaljci.cpp: In function 'void solve()':
izvanzemaljci.cpp:30:54: error: no matching function for call to 'max(<brace-enclosed initializer list>)'
   30 |     cout<<mnx<<" "<<mny<<" "<<max({mxx-mnx,mxy-mny,1});
      |                                                      ^
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 izvanzemaljci.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:
izvanzemaljci.cpp:30:54: note:   candidate expects 2 arguments, 1 provided
   30 |     cout<<mnx<<" "<<mny<<" "<<max({mxx-mnx,mxy-mny,1});
      |                                                      ^
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 izvanzemaljci.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:
izvanzemaljci.cpp:30:54: note:   candidate expects 3 arguments, 1 provided
   30 |     cout<<mnx<<" "<<mny<<" "<<max({mxx-mnx,mxy-mny,1});
      |                                                      ^
In file included from /usr/include/c++/10/algorithm:62,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
                 from izvanzemaljci.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:
izvanzemaljci.cpp:30:54: note:   deduced conflicting types for parameter '_Tp' ('long long int' and 'int')
   30 |     cout<<mnx<<" "<<mny<<" "<<max({mxx-mnx,mxy-mny,1});
      |                                                      ^
In file included from /usr/include/c++/10/algorithm:62,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
                 from izvanzemaljci.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:
izvanzemaljci.cpp:30:54: note:   deduced conflicting types for parameter '_Tp' ('long long int' and 'int')
   30 |     cout<<mnx<<" "<<mny<<" "<<max({mxx-mnx,mxy-mny,1});
      |                                                      ^