说一个悲伤地故事!
这几天正在加紧时间学STL!昨天刚刚勉强把map弄懂一点点。(故事的前提)
今天,来到平台准备刷有关map的题,老师推荐了一道题目。说是有关map。然后。。不会!!
后来,百度。。瞬间蒙逼!什么鬼!
特此求教!
IP聚合
Problem Description
当今世界,网络已经无处不在了,小度熊由于犯了错误,当上了度度公司的网络管理员,他手上有大量的 IP列表,小度熊想知道在某个固定的子网掩码下,有多少个网络地址。网络地址等于子网掩码与 IP 地址按位进行与运算后的结果,例如:
子网掩码:A.B.C.D
IP 地址:a.b.c.d
网络地址:(A&a).(B&b).(C&c).(D&d)
Input
第一行包含一个整数TTT,(1≤T≤50)(1 \leq T \leq 50)(1≤T≤50)代表测试数据的组数,
接下来TTT组测试数据。每组测试数据包含若干行,
第一行两个正整数N(1≤N≤1000,1≤M≤50),MN(1 \leq N \leq 1000, 1 \leq M \leq 50),MN(1≤N≤1000,1≤M≤50),M。接下来NNN行,每行一个字符串,代表一个 IP 地址,
再接下来MMM行,每行一个字符串代表子网掩码。IP 地址和子网掩码均采用 A.B.C.DA.B.C.DA.B.C.D的形式,其中A,B,C,DA,B,C,DA,B,C,D均为非负整数,且小于等于255。
Output
对于每组测试数据,输出两行:
第一行输出: "Case #i:" 。iii代表第iii组测试数据。
第二行输出测试数据的结果,对于每组数据中的每一个子网掩码,输出在此子网掩码下的网络地址的数量。
Sample Input
2 5 2 192.168.1.0 192.168.1.101 192.168.2.5 192.168.2.7 202.14.27.235 255.255.255.0 255.255.0.0 4 2 127.127.0.1 10.134.52.0 127.0.10.1 10.134.0.2 235.235.0.0 1.57.16.0
Sample Output
Case #1: 3 2 Case #2: 3 4 代码:#include <iostream>#include <cstdio>#include <algorithm>#include <cstring>#include <set>#include <vector>#include <map>using namespace std;const int maxn=1100;int a[maxn];int b[maxn];int c[maxn];int d[maxn];map<long long,int> m;int main(){ int t; scanf("%d",&t); for(int te=1;te<=t;te++) { int N,M; scanf("%d%d",&N,&M); for(int i=0;i<N;i++) scanf("%d.%d.%d.%d",&a[i],&b[i],&c[i],&d[i]); printf("Case #%d:\n",te); int A,B,C,D; int ans; long long temp; for(int i=1;i<=M;i++) { m.clear(); ans=0; scanf("%d.%d.%d.%d",&A,&B,&C,&D); for(int j=0;j<N;j++) { temp=0; temp=temp*1000+(a[j]&A); temp=temp*1000+(b[j]&B); temp=temp*1000+(c[j]&C); temp=temp*1000+(d[j]&D); if(!m[temp]) { ans++; m[temp]=1; } } printf("%d\n",ans); } } return 0;} 求大神评论赐教!!
时间: 2024-11-17 02:13:40