-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path383 - Shipping Routes.cpp
70 lines (61 loc) · 1.51 KB
/
383 - Shipping Routes.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
#include <bits/stdc++.h>
using namespace std;
#define OO 1000000000000000007
#define oo 1000000007
typedef long long ll;
const int N = 2000;
map<string, int>d;
map<string, vector<string> >adj;
void BFS(string source, string dest){
queue<string>q;
q.push(source);
d[source] = 0;
while(!q.empty()){
string u = q.front();
q.pop();
for(int i=0;i<adj[u].size();i++){
string v = adj[u][i];
if(d.count(v) == 0){
d[v] = d[u] + 1;
if(v == dest) return;
q.push(v);
}
}
}
}
int main() {
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif // ONLINE_JUDGE
int TC, cnt = 0;
scanf("%d", &TC);
puts("SHIPPING ROUTES OUTPUT");
while(TC--){
printf("\nDATA SET %d\n\n", ++cnt);
int V, E, P;
scanf("%d%d%d", &V, &E, &P);
for(int i=0;i<V;i++) {
string s;
cin >> s;
}
for(int i=0;i<E;i++) {
string f, t;
cin >> f >> t;
adj[f].push_back(t);
adj[t].push_back(f);
}
for(int i=0;i<P;i++) {
int cost; string f, t;
cin >> cost >> f >> t;
d.clear();
BFS(f, t);
if(d.count(t) > 0)
printf("$%d\n", d[t]*100*cost);
else puts("NO SHIPMENT POSSIBLE");
}
adj.clear();
}
printf("\nEND OF OUTPUT\n");
return 0;
}