QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#472304 | #4928. Game With Numbers | HuangHanSheng | Compile Error | / | / | C++14 | 696b | 2024-07-11 15:33:43 | 2024-07-11 15:33:44 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code: In function ‘long long int solve(long long int, std::vector<long long int>)’: answer.code:18:42: error: cannot convert ‘std::vector<long long int>’ to ‘long long int’ 18 | if (dep%2) return min(solve(p,dep+1),solve(dep+1,q)); | ^ | | | std::vector<long long int> answer.code:6:27: note: initializing argument 1 of ‘long long int solve(long long int, std::vector<long long int>)’ 6 | long long solve(long long dep,vector<long long >v){ | ~~~~~~~~~~^~~