提交记录 14341
| 提交时间 |
评测时间 |
| 2020-09-23 17:11:00 |
2020-09-23 17:11:07 |
#include "router.h"
#include <cstring>
#include <arpa/inet.h>
long long nexthop_trie[34000000];
long long *sub_trie[34000000];
unsigned Reverse(unsigned a)
{
unsigned ret = 0;
for (unsigned cnt = 31; a > 0; a >>= 1, cnt--)
ret |= (a&1) << cnt;
return ret;
}
void init(int n, int q, const RoutingTableEntry *a) {
memset(nexthop_trie, -1, sizeof(nexthop_trie));
for (int i = 0; i < n; i++)
{
unsigned addr = Reverse(ntohl(a[i].addr));
if (a[i].len > 24)
{
int cnt = 1;
for (int l = 24; l > 0; l--)
{
cnt = cnt << 1 | (addr & 1);
addr >>= 1;
}
if (sub_trie[cnt] == nullptr)
{
sub_trie[cnt] = new long long[540];
memset(sub_trie, -1, sizeof(long long) * 540);
}
int sub_cnt = 1;
for (int l = a[i].len - 24; l > 0; l--)
{
sub_cnt = sub_cnt << 1 | (addr & 1);
addr >>= 1;
}
sub_trie[cnt][sub_cnt] = a[i].nexthop;
}
else
{
int cnt = 1;
for (int l = a[i].len; l > 0; l--)
{
cnt = cnt << 1 | (addr & 1);
addr >>= 1;
}
nexthop_trie[cnt] = a[i].nexthop;
}
}
}
unsigned query(unsigned addr) {
addr = Reverse(ntohl(addr));
int ret = 0;
int cnt = 1;
for (int l = 24; l > 0; l--)
{
cnt = cnt << 1 | (addr & 1);
addr >>= 1;
if (nexthop_trie[cnt] != -1)
ret = nexthop_trie[cnt];
}
if (sub_trie[cnt] != nullptr)
{
int sub_cnt = 1;
for (int l = 4; l > 0; l--)
{
sub_cnt = sub_cnt << 1 | (addr & 1);
addr >>= 1;
if (sub_trie[cnt][sub_cnt] != -1)
ret = sub_trie[cnt][sub_cnt];
}
}
return ret;
}
| Compilation | N/A | N/A | Compile OK | Score: N/A | 显示更多 |
| Testcase #1 | 21.689 ms | 259 MB + 436 KB | Accepted | Score: 25 | 显示更多 |
| Testcase #2 | 57.065 ms | 291 MB + 784 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #3 | 268.896 ms | 291 MB + 784 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #4 | 473.014 ms | 291 MB + 784 KB | Wrong Answer | Score: 0 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-03-22 17:02:13 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠