-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfence6.cpp
98 lines (91 loc) · 2.48 KB
/
fence6.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
/*
ID: sireric1
LANG: C++11
TASK: fence6
*/
#include <bits/stdc++.h>
#define f first
#define s second
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef pair<int, int> pii;
typedef pair<int, pii> pipii;
template <typename T1, typename T2>
ostream &operator <<(ostream &os, pair<T1, T2> p){os << p.first << " " << p.second; return os;}
template <typename T>
ostream &operator <<(ostream &os, vector<T> &v){for(T i : v)os << i << ", "; return os;}
template <typename T>
ostream &operator <<(ostream &os, set<T> s){for(T i : s) os << i << ", "; return os;}
template <typename T1, typename T2>
ostream &operator <<(ostream &os, map<T1, T2> m){for(pair<T1, T2> i : m) os << i << endl; return os;}
int N, M;
vi desc[200];
vector<pii> graph[200];
int main(){
freopen("fence6.in", "r", stdin);
freopen("fence6.out", "w", stdout);
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> N;
for(int i = 0; i < N; i++){
int s, l, n1, n2; cin >> s >> l >> n1 >> n2;
vi a, b;
a.push_back(s);
b.push_back(s);
for(int j = 0; j < n1; j++){
int x; cin >> x;
a.push_back(x);
}
for(int j = 0; j < n2; j++){
int x; cin >> x;
b.push_back(x);
}
sort(a.begin(), a.end());
sort(b.begin(), b.end());
int fa = -1, fb = -1;
for(int j = 0; j < M; j++){
if(desc[j] == a){
fa = j;
}
if(desc[j] == b){
fb = j;
}
}
if(fa == -1){
fa = M;
desc[fa] = a;
M++;
}
if(fb == -1){
fb = M;
desc[fb] = b;
M++;
}
graph[fa].push_back(pii(fb, l));
graph[fb].push_back(pii(fa, l));
}
int ans = 1e9;
for(int i = 0; i < M; i++){
int dist[M];
fill(dist, dist+M, 1e9);
priority_queue<pipii, vector<pipii>, greater<pipii>> pq;
pq.push(pipii(0, pii(i, -1)));
while(!pq.empty()){
int d = pq.top().f, id = pq.top().s.f, pid = pq.top().s.s;
pq.pop();
if(dist[id] < 1e9){
ans = min(ans, dist[id] + d);
break;
}
dist[id] = d;
for(pii j : graph[id]){
if(j.f != pid){
pq.push(pipii(d + j.s, pii(j.f, id)));
}
}
}
}
cout << ans << endl;
return 0;
}