QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#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.
详细
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>