-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path17471.cpp
109 lines (98 loc) · 1.93 KB
/
17471.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
//
// Created by kdongha on 2020/02/27.
//
#include <bits/stdc++.h>
using namespace std;
int N, SUM, ans;
int people[11];
vector<int> adj[11];
bool contain[11];
int parent[11];
int find(int u) {
if (u == parent[u]) {
return u;
} else {
return parent[u] = find(parent[u]);
}
}
void merge(int u, int v) {
u = find(u);
v = find(v);
if (u > v) {
parent[u] = v;
} else {
parent[v] = u;
}
}
bool is2Group() {
for (int i = 1; i <= N; i++) {
parent[i] = i;
}
for (int i = 1; i <= N; i++) {
for (auto near:adj[i]) {
if (contain[i] == contain[near]) {
merge(i, near);
}
}
}
int count = 0;
for (int i = 1; i <= N; i++) {
if (parent[i] == i) {
count++;
}
}
return count == 2;
}
void comb(int index) {
if (index > N) {
if (is2Group()) {
int sum = 0;
for (int i = 1; i <= N; i++) {
if (contain[i]) {
sum += people[i];
}
}
if (sum != SUM) {
int diff = abs(2 * sum - SUM);
if (ans > diff) {
ans = diff;
}
}
}
} else {
comb(index + 1);
contain[index] = true;
comb(index + 1);
contain[index] = false;
}
}
void solve() {
cin >> N;
for (int i = 1; i <= N; i++) {
cin >> people[i];
SUM += people[i];
}
for (int i = 1; i <= N; i++) {
int n;
cin >> n;
for (int j = 0; j < n; j++) {
int temp;
cin >> temp;
adj[i].push_back(temp);
}
}
ans = SUM;
comb(0);
if (ans != SUM) {
cout << ans;
} else {
cout << -1;
}
}
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
solve();
return 0;
}