提交记录 18707
| 提交时间 |
评测时间 |
| 2022-12-01 17:18:36 |
2022-12-01 17:19:12 |
#include <map>
#include <arpa/inet.h>
#include "router.h"
std::map<unsigned, unsigned> M[33];
void ins(const RoutingTableEntry *e) {
M[e->len][htonl(e->addr)] = e->nexthop;
}
void init(int n, int q, const RoutingTableEntry *tbl) {
for (int i = 0; i < n; i++) {
ins(tbl + i);
}
}
unsigned query(unsigned addr) {
addr = htonl(addr);
for (int i = 32; i >= 0; i--) {
if (M[i].count(addr) > 0) {
return M[i][addr];
}
addr &= ~(1u << (32 - i));
}
while(1);
return 0;
}
| Compilation | N/A | N/A | Compile OK | Score: N/A | 显示更多 |
| Testcase #1 | 30 s | 20 KB | Time Limit Exceeded | Score: 0 | 显示更多 |
| Testcase #2 | 100.274 ms | 47 MB + 360 KB | Accepted | Score: 25 | 显示更多 |
| Testcase #3 | 3.381 s | 47 MB + 360 KB | Accepted | Score: 25 | 显示更多 |
| Testcase #4 | 6.658 s | 47 MB + 360 KB | Accepted | Score: 25 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-03-15 14:26:43 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠