博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
东大OJ-1588: Routing Table
阅读量:6436 次
发布时间:2019-06-23

本文共 3903 字,大约阅读时间需要 13 分钟。

题目描述

In the computer network, a Router is a device which finds an optimal way to transmit the datagrams passing through it to it's destination efficiently. To accomplish this task, the Router maintains a Routing Table.

The Routing Table stores a variety of relevant data about transmission path. In other words, the information contained in the table determines the forwarding strategy of a datagram.
Normally, the information in the Routing Table for each routing table entry is:
First the destination IP Address, followed by the number of bits of the sub-net mask, and finally the forwarded network port number of the destination network.
For each datagram passing through it, the Router compares the datagram’s destination IP Address with the information of routing table entry, if the network number of the destination IP Address is equals to the network number stored in the routing table entry, then the datagram is forwarded to the corresponding port.
Now, give you the Routing Table stored in the Router. Then for each datagram travel through this Router, give you it's destination IP Address, please return which network port will the datagram be forwarded to.ou

You will get some help:

输入

The first line of input contains an integer T, indicating the number of test cases (T ≤ 20).

The first line of each test case contains two integers N and M, represent the number of entries in the Routing Table and the number of datagram passing through the Router, N and M are all less than 100000. Nest N lines each line represent a routing table entry, the format of input is IP Address/bits of sub-net mask and forwarded port number. And next M lines each line contain a destination IP Address. Please refer to the sample input for more detail.

输出

For each destination IP Address, please output the port number that the Router should forward. If there are many entry both match to this destination IP Address, please output the one that has the longest bits of sub-net mask. If there are also many entry match, please output the one that has the smallest port number. If there are none entry match, please output the default port 65535.

样例输入

14 4192.168.0.0/16 1234192.168.1.0/24 1235192.168.1.0/23 1233192.168.0.0/23 1236192.168.2.0192.168.0.0192.168.1.0255.255.255.255

样例输出

123412331235

65535

第一次在ACM的题中手打哈希表,好高兴,一次成功了.
哈希表实现要领

1.哈希表中每个元素都是指针,指向某元素.
2.很像链式前向星的一种结构
#include
#include
#include
#include
using namespace std;const int maxn = 1e5 + 7;const int len = maxn * 10;const int P = 1e9 + 7;struct Node{ int ip, bits,to; int next;}mem[maxn];int mi;struct Hash{ int a[len]; void init(){ memset(a, 0, sizeof(a)); } void insert(int ip, int bits,int to){ int pos = abs((ip*17)%P+13*bits)%len; for (int i = a[pos]; i; i = mem[i].next){ if (mem[i].ip == ip&&mem[i].bits == bits){ mem[i].to = min(mem[i].to, to); return; } } mem[++mi].ip = ip, mem[mi].bits = bits, mem[mi].to = to, mem[mi].next = a[pos], a[pos] = mi; } int get(int ip, int bits){ int pos = abs((ip * 17) % P + 13 * bits) % len; for (int i = a[pos]; i; i = mem[i].next){ if (mem[i].ip == ip&&mem[i].bits == bits)return mem[i].to; } return -1; }}dic;int mask[33];void init(){ mask[32] = ~0; for (int i = 31; i >= 0; i--)mask[i] = mask[i + 1] << 1;}int read(){ int a, b, c, d; scanf("%d.%d.%d.%d", &a, &b, &c, &d); int ans = (a << 24) | (b << 16) | (c << 8) | d; return ans;}int main(){ freopen("in.txt", "r", stdin); init(); int T; scanf("%d", &T); while (T--){ int N, M; scanf("%d%d", &N, &M); dic.init(); mi = 0; while (N--){ int bits,to; int ip = read(); scanf("/%d%d", &bits,&to); ip &= mask[bits]; dic.insert(ip, bits, to); } while (M--){ int ip = read(); for (int i = 32; i >= 0; i--){ ip&=mask[i]; int ans = dic.get(ip, i); if (ans ^-1){ printf("%d\n", ans); goto over; } } printf("65535\n"); over:; } } return 0;}

转载地址:http://koqga.baihongyu.com/

你可能感兴趣的文章
环信集成 2---基于环信Demo3.0,实现单聊功能
查看>>
Hadoop学习:Map/Reduce初探与小Demo实现
查看>>
【Lucene4.8教程之二】索引
查看>>
稍稍乱入的CNN,本文依然是学习周莫烦视频的笔记。
查看>>
数据归一化、标准化
查看>>
Java开发中JDBC连接数据库代码和步骤
查看>>
php验证码--图片
查看>>
Java代码质量监控工具Sonar安装
查看>>
SpringMVC中 -- @RequestMapping的作用及用法
查看>>
Linux之convert命令【转】
查看>>
提高阅读源代码的效率 转
查看>>
java一些常用并发工具示例
查看>>
45. Jump Game II
查看>>
c++ 类内static成员初始化
查看>>
python-ConfigParser模块【读写配置文件】
查看>>
更改printk打印级别【转】
查看>>
2.2 dubbo-spi源码解析
查看>>
hadoop之 YARN配置参数剖析—RM与NM相关参数
查看>>
软件开发中的几种数据交换协议
查看>>
MySQL多个相同结构的表查询并把结果合并放在一起的语句(union all)
查看>>