-
Notifications
You must be signed in to change notification settings - Fork 67
/
ALCATRAZ2.cpp
62 lines (54 loc) · 1.21 KB
/
ALCATRAZ2.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
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <cstring>
#include <numeric>
#include <algorithm>
#include <functional>
#include <vector>
#include <queue>
#include <stack>
#include <set>
#include <map>
//#include <unordered_map>
#include <utility>
#include <cassert>
#include <iomanip>
#include <ctime>
#include <fstream>
using namespace std;
const int me = 1025;
int M, a, b;
int answer;
int x[10], go[10][10];
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
for(int i = 0; i < 8; i ++)
cin >> x[i];
cin >> M;
for(int i = 0; i < M; i ++){
cin >> a >> b;
--a, --b;
go[a][b] = go[b][a] = 1;
}
for(int i = 1; i < (1 << 8); i ++){
int good = 1;
for(int j = 0; j < 8; j ++)
if(i & (1 << j))
for(int k = 0; k < 8; k ++)
if(i & (1 << k))
if(go[j][k])
good = 0;
if(good){
int s = 0;
for(int j = 0; j < 8; j ++)
if(i & (1 << j))
s += x[j];
answer = max(answer, s);
}
}
cout << answer << endl;
return 0;
}