| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1315907 | ezzzay | Festival (IOI25_festival) | C++20 | Compilation error | 0 ms | 0 KiB |
#include "festival.h"
#include<bits/stdc++.h>
using namespace std;
#define int long long
std::vector<int> max_coupons(int A, std::vector<int> P, std::vector<int> T) {
pair<int,int>vc;
int N=P.size();
for(int i=0;i<N;i++){
vc.pb({P[i],i});
}
sort(vc.begin(),vc.end());
for(auto p:vc){
if(p.ff<=A){
A-=p.ff;
v.pb(p.ss);
}
}
return v;
}
Compilation message (stderr)
festival.cpp: In function 'std::vector<long long int> max_coupons(long long int, std::vector<long long int>, std::vector<long long int>)':
festival.cpp:9:12: error: 'struct std::pair<long long int, long long int>' has no member named 'pb'
9 | vc.pb({P[i],i});
| ^~
festival.cpp:11:13: error: 'struct std::pair<long long int, long long int>' has no member named 'begin'
11 | sort(vc.begin(),vc.end());
| ^~~~~
festival.cpp:11:24: error: 'struct std::pair<long long int, long long int>' has no member named 'end'
11 | sort(vc.begin(),vc.end());
| ^~~
festival.cpp:12:16: error: no matching function for call to 'begin(std::pair<long long int, long long int>&)'
12 | for(auto p:vc){
| ^~
In file included from /usr/include/c++/13/bits/stl_vector.h:63,
from /usr/include/c++/13/vector:66,
from festival.h:1,
from festival.cpp:1:
/usr/include/c++/13/initializer_list:88:5: note: candidate: 'template<class _Tp> constexpr const _Tp* std::begin(initializer_list<_Tp>)'
88 | begin(initializer_list<_Tp> __ils) noexcept
| ^~~~~
/usr/include/c++/13/initializer_list:88:5: note: template argument deduction/substitution failed:
festival.cpp:12:16: note: 'std::pair<long long int, long long int>' is not derived from 'std::initializer_list<_Tp>'
12 | for(auto p:vc){
| ^~
In file included from /usr/include/c++/13/vector:69:
/usr/include/c++/13/bits/range_access.h:52:5: note: candidate: 'template<class _Container> constexpr decltype (__cont.begin()) std::begin(_Container&)'
52 | begin(_Container& __cont) -> decltype(__cont.begin())
| ^~~~~
/usr/include/c++/13/bits/range_access.h:52:5: note: template argument deduction/substitution failed:
/usr/include/c++/13/bits/range_access.h: In substitution of 'template<class _Container> constexpr decltype (__cont.begin()) std::begin(_Container&) [with _Container = std::pair<long long int, long long int>]':
festival.cpp:12:16: required from here
/usr/include/c++/13/bits/range_access.h:52:50: error: 'struct std::pair<long long int, long long int>' has no member named 'begin'
52 | begin(_Container& __cont) -> decltype(__cont.begin())
| ~~~~~~~^~~~~
/usr/include/c++/13/bits/range_access.h:63:5: note: candidate: 'template<class _Container> constexpr decltype (__cont.begin()) std::begin(const _Container&)'
63 | begin(const _Container& __cont) -> decltype(__cont.begin())
| ^~~~~
/usr/include/c++/13/bits/range_access.h:63:5: note: template argument deduction/substitution failed:
/usr/include/c++/13/bits/range_access.h: In substitution of 'template<class _Container> constexpr decltype (__cont.begin()) std::begin(const _Container&) [with _Container = std::pair<long long int, long long int>]':
festival.cpp:12:16: required from here
/usr/include/c++/13/bits/range_access.h:63:56: error: 'const struct std::pair<long long int, long long int>' has no member named 'begin'
63 | begin(const _Container& __cont) -> decltype(__cont.begin())
| ~~~~~~~^~~~~
/usr/include/c++/13/bits/range_access.h:95:5: note: candidate: 'template<class _Tp, long unsigned int _Nm> constexpr _Tp* std::begin(_Tp (&)[_Nm])'
95 | begin(_Tp (&__arr)[_Nm]) noexcept
| ^~~~~
/usr/include/c++/13/bits/range_access.h:95:5: note: template argument deduction/substitution failed:
festival.cpp:12:16: note: mismatched types '_Tp [_Nm]' and 'std::pair<long long int, long long int>'
12 | for(auto p:vc){
| ^~
In file included from /usr/include/x86_64-linux-gnu/c++/13/bits/stdc++.h:166,
from festival.cpp:2:
/usr/include/c++/13/valarray:1227:5: note: candidate: 'template<class _Tp> _Tp* std::begin(valarray<_Tp>&)'
1227 | begin(valarray<_Tp>& __va) noexcept
| ^~~~~
/usr/include/c++/13/valarray:1227:5: note: template argument deduction/substitution failed:
festival.cpp:12:16: note: 'std::pair<long long int, long long int>' is not derived from 'std::valarray<_Tp>'
12 | for(auto p:vc){
| ^~
/usr/include/c++/13/valarray:1238:5: note: candidate: 'template<class _Tp> const _Tp* std::begin(const valarray<_Tp>&)'
1238 | begin(const valarray<_Tp>& __va) noexcept
| ^~~~~
/usr/include/c++/13/valarray:1238:5: note: template argument deduction/substitution failed:
festival.cpp:12:16: note: 'std::pair<long long int, long long int>' is not derived from 'const std::valarray<_Tp>'
12 | for(auto p:vc){
| ^~
festival.cpp:12:16: error: no matching function for call to 'end(std::pair<long long int, long long int>&)'
/usr/include/c++/13/initializer_list:99:5: note: candidate: 'template<class _Tp> constexpr const _Tp* std::end(initializer_list<_Tp>)'
99 | end(initializer_list<_Tp> __ils) noexcept
| ^~~
/usr/include/c++/13/initializer_list:99:5: note: template argument deduction/substitution failed:
festival.cpp:12:16: note: 'std::pair<long long int, long long int>' is not derived from 'std::initializer_list<_Tp>'
12 | for(auto p:vc){
| ^~
/usr/include/c++/13/bits/range_access.h:74:5: note: candidate: 'template<class _Container> constexpr decltype (__cont.end()) std::end(_Container&)'
74 | end(_Container& __cont) -> decltype(__cont.end())
| ^~~
/usr/include/c++/13/bits/range_access.h:74:5: note: template argument deduction/substitution failed:
/usr/include/c++/13/bits/range_access.h: In substitution of 'template<class _Container> constexpr decltype (__cont.end()) std::end(_Container&) [with _Container = std::pair<long long int, long long int>]':
festival.cpp:12:16: required from here
/usr/include/c++/13/bits/range_access.h:74:48: error: 'struct std::pair<long long int, long long int>' has no member named 'end'
74 | end(_Container& __cont) -> decltype(__cont.end())
| ~~~~~~~^~~
/usr/include/c++/13/bits/range_access.h:85:5: note: candidate: 'template<class _Container> constexpr decltype (__cont.end()) std::end(const _Container&)'
85 | end(const _Container& __cont) -> decltype(__cont.end())
| ^~~
/usr/include/c++/13/bits/range_access.h:85:5: note: template argument deduction/substitution failed:
/usr/include/c++/13/bits/range_access.h: In substitution of 'template<class _Container> constexpr decltype (__cont.end()) std::end(const _Container&) [with _Container = std::pair<long long int, long long int>]':
festival.cpp:12:16: required from here
/usr/include/c++/13/bits/range_access.h:85:54: error: 'const struct std::pair<long long int, long long int>' has no member named 'end'
85 | end(const _Container& __cont) -> decltype(__cont.end())
| ~~~~~~~^~~
/usr/include/c++/13/bits/range_access.h:106:5: note: candidate: 'template<class _Tp, long unsigned int _Nm> constexpr _Tp* std::end(_Tp (&)[_Nm])'
106 | end(_Tp (&__arr)[_Nm]) noexcept
| ^~~
/usr/include/c++/13/bits/range_access.h:106:5: note: template argument deduction/substitution failed:
festival.cpp:12:16: note: mismatched types '_Tp [_Nm]' and 'std::pair<long long int, long long int>'
12 | for(auto p:vc){
| ^~
/usr/include/c++/13/valarray:1249:5: note: candidate: 'template<class _Tp> _Tp* std::end(valarray<_Tp>&)'
1249 | end(valarray<_Tp>& __va) noexcept
| ^~~
/usr/include/c++/13/valarray:1249:5: note: template argument deduction/substitution failed:
festival.cpp:12:16: note: 'std::pair<long long int, long long int>' is not derived from 'std::valarray<_Tp>'
12 | for(auto p:vc){
| ^~
/usr/include/c++/13/valarray:1265:5: note: candidate: 'template<class _Tp> const _Tp* std::end(const valarray<_Tp>&)'
1265 | end(const valarray<_Tp>& __va) noexcept
| ^~~
/usr/include/c++/13/valarray:1265:5: note: template argument deduction/substitution failed:
festival.cpp:12:16: note: 'std::pair<long long int, long long int>' is not derived from 'const std::valarray<_Tp>'
12 | for(auto p:vc){
| ^~
festival.cpp:15:13: error: 'v' was not declared in this scope
15 | v.pb(p.ss);
| ^
festival.cpp:18:12: error: 'v' was not declared in this scope
18 | return v;
| ^