Submission #203943

# Submission time Handle Problem Language Result Execution time Memory
203943 2020-02-23T07:05:06 Z awlintqaa Uzastopni (COCI17_uzastopni) C++14
Compilation error
0 ms 0 KB
#define fast ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0)
#include <bits/stdc++.h>
using namespace std;
#define sqr 200
#define mid (l+r)/2
#define pb push_back
#define ppb pop_back
#define fi first
#define se second
#define lb lower_bound
#define ub upper_bound
#define ins insert
#define era erase
#define C continue
#define mem(dp,i) memset(dp,i,sizeof(dp))
#define mset multiset
typedef long long ll;
typedef short int si;
typedef long double ld;
typedef pair<int,int> pi;
typedef pair<ll,ll> pll;
typedef vector<int> vi;
typedef vector<ll> vll;
typedef vector<pi> vpi;
typedef vector<pll> vpll;
const ll mod=1e9+7;
const ll inf= 4e18;
const ld pai=acos(-1);
ll n;
ll sum (ll l , ll r ){
        return ( r * (r+1ll) / 2ll ) - ( l * (l-1ll) / 2ll) ;
}
int main(){
        cin >> n ;
        for ( ll i= 1 ;i < min(10001,n) ;i ++ ){
                ll l=i+1,r=n;
                while ( r-l >1 ){
                        if ( sum ( i , mid ) <=n ) l=mid;
                        else r=mid;
                }
                if ( sum ( i ,l ) == n ){
                        cout<< i << " " << l << endl;
                }
        }
}

Compilation message

uzastopni.cpp: In function 'int main()':
uzastopni.cpp:35:39: error: no matching function for call to 'min(int, ll&)'
         for ( ll i= 1 ;i < min(10001,n) ;i ++ ){
                                       ^
In file included from /usr/include/c++/7/bits/char_traits.h:39:0,
                 from /usr/include/c++/7/ios:40,
                 from /usr/include/c++/7/istream:38,
                 from /usr/include/c++/7/sstream:38,
                 from /usr/include/c++/7/complex:45,
                 from /usr/include/c++/7/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/7/bits/stdc++.h:52,
                 from uzastopni.cpp:2:
/usr/include/c++/7/bits/stl_algobase.h:195:5: note: candidate: template<class _Tp> constexpr const _Tp& std::min(const _Tp&, const _Tp&)
     min(const _Tp& __a, const _Tp& __b)
     ^~~
/usr/include/c++/7/bits/stl_algobase.h:195:5: note:   template argument deduction/substitution failed:
uzastopni.cpp:35:39: note:   deduced conflicting types for parameter 'const _Tp' ('int' and 'll {aka long long int}')
         for ( ll i= 1 ;i < min(10001,n) ;i ++ ){
                                       ^
In file included from /usr/include/c++/7/bits/char_traits.h:39:0,
                 from /usr/include/c++/7/ios:40,
                 from /usr/include/c++/7/istream:38,
                 from /usr/include/c++/7/sstream:38,
                 from /usr/include/c++/7/complex:45,
                 from /usr/include/c++/7/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/7/bits/stdc++.h:52,
                 from uzastopni.cpp:2:
/usr/include/c++/7/bits/stl_algobase.h:243:5: note: candidate: template<class _Tp, class _Compare> constexpr const _Tp& std::min(const _Tp&, const _Tp&, _Compare)
     min(const _Tp& __a, const _Tp& __b, _Compare __comp)
     ^~~
/usr/include/c++/7/bits/stl_algobase.h:243:5: note:   template argument deduction/substitution failed:
uzastopni.cpp:35:39: note:   deduced conflicting types for parameter 'const _Tp' ('int' and 'll {aka long long int}')
         for ( ll i= 1 ;i < min(10001,n) ;i ++ ){
                                       ^
In file included from /usr/include/c++/7/algorithm:62:0,
                 from /usr/include/x86_64-linux-gnu/c++/7/bits/stdc++.h:65,
                 from uzastopni.cpp:2:
/usr/include/c++/7/bits/stl_algo.h:3450:5: note: candidate: template<class _Tp> constexpr _Tp std::min(std::initializer_list<_Tp>)
     min(initializer_list<_Tp> __l)
     ^~~
/usr/include/c++/7/bits/stl_algo.h:3450:5: note:   template argument deduction/substitution failed:
uzastopni.cpp:35:39: note:   mismatched types 'std::initializer_list<_Tp>' and 'int'
         for ( ll i= 1 ;i < min(10001,n) ;i ++ ){
                                       ^
In file included from /usr/include/c++/7/algorithm:62:0,
                 from /usr/include/x86_64-linux-gnu/c++/7/bits/stdc++.h:65,
                 from uzastopni.cpp:2:
/usr/include/c++/7/bits/stl_algo.h:3456:5: note: candidate: template<class _Tp, class _Compare> constexpr _Tp std::min(std::initializer_list<_Tp>, _Compare)
     min(initializer_list<_Tp> __l, _Compare __comp)
     ^~~
/usr/include/c++/7/bits/stl_algo.h:3456:5: note:   template argument deduction/substitution failed:
uzastopni.cpp:35:39: note:   mismatched types 'std::initializer_list<_Tp>' and 'int'
         for ( ll i= 1 ;i < min(10001,n) ;i ++ ){
                                       ^