QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#472177 | #4928. Game With Numbers | HuangHanSheng | Compile Error | / | / | C++17 | 678b | 2024-07-11 14:52:37 | 2024-07-11 14:52:38 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code: In function ‘int solve(long long int, std::vector<long long int>)’: answer.code:19:42: error: could not convert ‘p’ from ‘vector<int>’ to ‘vector<long long int>’ 19 | if(dep%2) return min(solve(dep+1,p),solve(dep+1,q)); | ^ | | | vector<int> answer.code:19:57: error: could not convert ‘q’ from ‘vector<int>’ to ‘vector<long long int>’ 19 | if(dep%2) return min(solve(dep+1,p),solve(dep+1,q)); | ^ | | | vector<int> answer.code:20:37: error: could not convert ‘p’ from ‘vector<int>’ to ‘vector<long long int>’ 20 | else return max(solve(dep+1,p),solve(dep+1,q)); | ^ | | | vector<int> answer.code:20:52: error: could not convert ‘q’ from ‘vector<int>’ to ‘vector<long long int>’ 20 | else return max(solve(dep+1,p),solve(dep+1,q)); | ^ | | | vector<int>