QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#325071 | #8232. Yet Another Shortest Path Query | ucup-team106# | Compile Error | / | / | C++20 | 6.6kb | 2024-02-11 03:56:25 | 2024-02-11 03:56:25 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
详细
answer.code: In function ‘void solve()’: answer.code:124:29: error: ‘class __gnu_pbds::gp_hash_table<std::pair<int, int>, int, chash>’ has no member named ‘count’ 124 | if (!dist_2.count({ x, y }) || dist_2[{x, y}] > d) { | ^~~~~ answer.code:135:29: error: ‘class __gnu_pbds::gp_hash_table<std::pair<int, int>, int, chash>’ has no member named ‘count’ 135 | if (!dist_2.count({ v, y }) || dist_2[{v, y}] > d) { | ^~~~~ answer.code:156:29: error: ‘class __gnu_pbds::gp_hash_table<std::pair<int, int>, int, chash>’ has no member named ‘count’ 156 | if (ans.count({ x, z })) | ^~~~~ answer.code:158:29: error: ‘class __gnu_pbds::gp_hash_table<std::pair<int, int>, int, chash>’ has no member named ‘count’ 158 | if (ans.count({ z, x })) | ^~~~~ answer.code:167:20: error: ‘class __gnu_pbds::gp_hash_table<std::pair<int, int>, int, chash>’ has no member named ‘count’ 167 | if (dist_1.count({ u, v })) | ^~~~~ answer.code:169:20: error: ‘class __gnu_pbds::gp_hash_table<std::pair<int, int>, int, chash>’ has no member named ‘count’ 169 | if (dist_2.count({ u, v })) | ^~~~~ answer.code:172:24: error: ‘class __gnu_pbds::gp_hash_table<std::pair<int, int>, int, chash>’ has no member named ‘count’ 172 | if (dist_1.count({ x, v })) | ^~~~~ answer.code:174:24: error: ‘class __gnu_pbds::gp_hash_table<std::pair<int, int>, int, chash>’ has no member named ‘count’ 174 | if (dist_2.count({ x, v })) | ^~~~~ answer.code:178:24: error: ‘class __gnu_pbds::gp_hash_table<std::pair<int, int>, int, chash>’ has no member named ‘count’ 178 | if (dist_1.count({ x, u })) | ^~~~~ answer.code:180:24: error: ‘class __gnu_pbds::gp_hash_table<std::pair<int, int>, int, chash>’ has no member named ‘count’ 180 | if (dist_2.count({ x, u })) | ^~~~~