UVA Solution 280 - Vertex - Solution in C++ | Volume 2 - Online Judge Solution

Latest

It is a free Online judges problems solution list. Here you can find UVA online Judge Solution, URI Online Judge Solution, Code Marshal Online Judge Solution, Spoz Online Judge Problems Solution

Monday, May 1, 2017

UVA Solution 280 - Vertex - Solution in C++ | Volume 2

UVA Solution 280 - Vertex - Solution in C++ | Volume 2


UVA Online Judge Solution 280 - Vertex| Volume 2
UVA Problem Link - 280 - Vertex https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=4&page=show_problem&problem=216

Problem Name: 280 - Vertex
Problem Number : UVA - 280 - Vertex
Online Judge : UVA Online Judge Solution
Volume: 2
Solution Language : C plus plus

UVA Solution 280 - Vertex Code in CPP:


#include<stdio.h>
#include<string.h>
#define oo 0xffff
int main() {
 int n, x, y, i, j, k, m;
 int map[101][101];
 while(scanf("%d", &n) == 1 && n) {
  memset(map, 0, sizeof(map));
  while(scanf("%d", &x) == 1 && x) {
   while(scanf("%d", &y) == 1 && y)
    map[x][y] = 1;
  }
  for(i = 1; i <= n; i++)
   for(j = 1; j <= n; j++)
    if(map[i][j] == 0)
     map[i][j] = oo;
  for(k = 1; k <= n; k++)
   for(i = 1; i <= n; i++)
    for(j = 1; j <= n; j++)
     if(map[i][j] > map[i][k] + map[k][j])
      map[i][j] = map[i][k] + map[k][j];
  scanf("%d", &m);
  while(m--) {
   scanf("%d", &x);
   int Ans[101], At = 0;
   for(i = 1; i <= n; i++)
    if(map[x][i] == oo)
     Ans[At++] = i;
   printf("%d", At);
   for(i = 0; i < At; i++)
    printf(" %d", Ans[i]);
   puts("");
  }
 }
    return 0;
}

No comments:

Post a Comment