-
Notifications
You must be signed in to change notification settings - Fork 0
/
uva336.cpp
67 lines (57 loc) · 2.02 KB
/
uva336.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/******************************************************************************
Online C++ Compiler.
Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <iostream>
#include <cstdio>
#include <map>
#include <vector>
#include <queue>
using namespace std;
typedef vector<int> vi;
int main()
{
int n,c=0;
while(scanf("%d", &n),n){
map<int, vi> AdjList;
while(n--){
int a,b;
scanf("%d %d", &a,&b);
AdjList[a].push_back(b);
AdjList[b].push_back(a);
}
int f, s;
while(scanf("%d %d", &f, &s), f){
c++;
map<int,bool> vis;
map<int, int> dist;
queue<int> q;
q.push(f);
dist[f] = 0;
vis[f] = 1;
while(!q.empty()){
int node = q.front(); q.pop();
for(int j =0; j < AdjList[node].size(); ++j){
int u = AdjList[node][j];
if (!vis[u]){
vis[u] = 1;
dist[u] = dist[node] + 1;
q.push(u);
}
}
}
int count = 0,nodes = 0;
for(std::map<int,int>::iterator iter = dist.begin(); iter != dist.end(); ++iter)
{
// nodes++;
//printf("%d -> %d ,",iter->first, iter->second);
if(iter->second <= s){
count ++;
}
}
printf("Case %d: %d nodes not reachable from node %d with TTL = %d.\n", c,AdjList.size()-count,f,s);
}
}
return 0;
}