QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#391037 | #3733. 地铁 | ucup-team1383 | Compile Error | / | / | C++98 | 1.8kb | 2024-04-16 12:19:03 | 2024-04-16 12:19:03 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
详细
answer.code: In function ‘long long int dijstra()’: answer.code:37:56: error: ‘>>’ should be ‘> >’ within a nested template argument list 37 | priority_queue<pair<int, int>, vector<pair<int, int>>, greater<pair<int, int>>> op; | ^~ | > > answer.code:37:81: error: ‘>>’ should be ‘> >’ within a nested template argument list 37 | priority_queue<pair<int, int>, vector<pair<int, int>>, greater<pair<int, int>>> op; | ^~ | > > answer.code:65:25: warning: extended initializer lists only available with ‘-std=c++11’ or ‘-std=gnu++11’ [-Wc++11-extensions] 65 | op.push({dist[x], x}); | ^ answer.code:65:24: warning: extended initializer lists only available with ‘-std=c++11’ or ‘-std=gnu++11’ [-Wc++11-extensions] 65 | op.push({dist[x], x}); | ~~~~~~~^~~~~~~~~~~~~~ answer.code:69:1: warning: control reaches end of non-void function [-Wreturn-type] 69 | } | ^