Submission #364940

# Submission time Handle Problem Language Result Execution time Memory
364940 2021-02-10T13:59:27 Z kostia244 Koala Game (APIO17_koala) C++17
Compilation error
0 ms 0 KB
#include "koala.h"
#include<bits/stdc++.h>
using namespace std;
#define all(x) begin(x), end(x)
int minValue(int n, int __w) {
	vector<int> take(n), res(n);
	take[0] = 1;
	playRound(take.data(), res.data());
    return min_element(all(res))-res.begin();
}

int maxValue(int n, int __w) {
	vector<int> take(n), res(n), bad(n);
	vector<int> alive(n);
	iota(all(alive), 0);
	while(alive.size() > 1) {
		int mid = max(alive.size()/2, 2);
		fill(all(take), 0);
		fill(all(res), 0);
		for(int i = 0; i < mid; i++) {
			take[i] = __w/mid;
		}
		playRound(take.data(), res.data());
		//cout << alive.size() << endl;
		//for(auto i : take) cout << i << " "; cout << endl;
		//for(auto i : res) cout << i << " "; cout << endl;
		vector<int> nw;
		for(auto i : alive) if(res[i]) nw.push_back(i);
		alive = nw;
	}
    return alive[0];
}

int greaterValue(int N, int W) {
    // TODO: Implement Subtask 3 solution here.
    // You may leave this function unmodified if you are not attempting this
    // subtask.
    return 0;
}

void allValues(int N, int W, int *P) {
    if (W == 2*N) {
        // TODO: Implement Subtask 4 solution here.
        // You may leave this block unmodified if you are not attempting this
        // subtask.
    } else {
        // TODO: Implement Subtask 5 solution here.
        // You may leave this block unmodified if you are not attempting this
        // subtask.
    }
}

Compilation message

koala.cpp: In function 'int maxValue(int, int)':
koala.cpp:17:34: error: no matching function for call to 'max(std::vector<int>::size_type, int)'
   17 |   int mid = max(alive.size()/2, 2);
      |                                  ^
In file included from /usr/include/c++/9/bits/specfun.h:45,
                 from /usr/include/c++/9/cmath:1927,
                 from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:41,
                 from koala.cpp:2:
/usr/include/c++/9/bits/stl_algobase.h:222:5: note: candidate: 'template<class _Tp> constexpr const _Tp& std::max(const _Tp&, const _Tp&)'
  222 |     max(const _Tp& __a, const _Tp& __b)
      |     ^~~
/usr/include/c++/9/bits/stl_algobase.h:222:5: note:   template argument deduction/substitution failed:
koala.cpp:17:34: note:   deduced conflicting types for parameter 'const _Tp' ('long unsigned int' and 'int')
   17 |   int mid = max(alive.size()/2, 2);
      |                                  ^
In file included from /usr/include/c++/9/bits/specfun.h:45,
                 from /usr/include/c++/9/cmath:1927,
                 from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:41,
                 from koala.cpp:2:
/usr/include/c++/9/bits/stl_algobase.h:268:5: note: candidate: 'template<class _Tp, class _Compare> constexpr const _Tp& std::max(const _Tp&, const _Tp&, _Compare)'
  268 |     max(const _Tp& __a, const _Tp& __b, _Compare __comp)
      |     ^~~
/usr/include/c++/9/bits/stl_algobase.h:268:5: note:   template argument deduction/substitution failed:
koala.cpp:17:34: note:   deduced conflicting types for parameter 'const _Tp' ('long unsigned int' and 'int')
   17 |   int mid = max(alive.size()/2, 2);
      |                                  ^
In file included from /usr/include/c++/9/algorithm:62,
                 from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:65,
                 from koala.cpp:2:
/usr/include/c++/9/bits/stl_algo.h:3456:5: note: candidate: 'template<class _Tp> constexpr _Tp std::max(std::initializer_list<_Tp>)'
 3456 |     max(initializer_list<_Tp> __l)
      |     ^~~
/usr/include/c++/9/bits/stl_algo.h:3456:5: note:   template argument deduction/substitution failed:
koala.cpp:17:34: note:   mismatched types 'std::initializer_list<_Tp>' and 'long unsigned int'
   17 |   int mid = max(alive.size()/2, 2);
      |                                  ^
In file included from /usr/include/c++/9/algorithm:62,
                 from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:65,
                 from koala.cpp:2:
/usr/include/c++/9/bits/stl_algo.h:3462:5: note: candidate: 'template<class _Tp, class _Compare> constexpr _Tp std::max(std::initializer_list<_Tp>, _Compare)'
 3462 |     max(initializer_list<_Tp> __l, _Compare __comp)
      |     ^~~
/usr/include/c++/9/bits/stl_algo.h:3462:5: note:   template argument deduction/substitution failed:
koala.cpp:17:34: note:   mismatched types 'std::initializer_list<_Tp>' and 'long unsigned int'
   17 |   int mid = max(alive.size()/2, 2);
      |                                  ^