QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#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.
詳細信息
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){ | ~~~~~~~~~~^~~