forked from kapillamba4/Lightoj-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1219-Mafia.cpp
76 lines (59 loc) · 1.09 KB
/
1219-Mafia.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
68
69
70
71
72
73
74
75
76
#include <bits/stdc++.h>
#define ll long long
#define MAX 100100
using namespace std;
ll boys[10100];
bool visited[10100];
vector <ll> edges[10100];
ll ans;
ll dfs(ll curr)
{
if (visited[curr])
return 0;
ll extr = boys[curr] - 1;
visited[curr] = true;
for (int i = 0; i < edges[curr].size(); i++) {
ll child = edges[curr][i];
ll temp = dfs(child);
extr += temp;
ans += abs(temp);
}
return extr;
}
int main()
{
#ifndef ONLINE_JUDGE
freopen("/home/sameer/Documents/sameer/input.sam", "r", stdin);
#endif
ios_base::sync_with_stdio(false);
ll i, j, k, n, m, t, cont, a, b, edge;
cin >> t;
ll cases = t;
while (t--) {
cin >> n ;
for ( i = 0; i < n; ++i)
{
edges[i].clear();
}
memset(visited, false, sizeof visited);
ans = 0;
for (i = 0; i < n; i++) {
cin >> k;
k--;
cin >> boys[k];
cin >> edge;
for (j = 0; j < edge; j++) {
cin >> a;
a--;
edges[k].push_back(a);
edges[a].push_back(k);
}
}
for (i = 0; i < n; i++) {
if (visited[i] == false)
dfs(i);
}
cout << "Case " << cases - t << ": " << ans << endl;
}
return 0;
}