#include <bits/stdc++.h>
using namespace std;
vector<pair<int, int> > adj[100005];
priority_queue<pair<int, int> > pq;
long long dp[32][100005];
int a[5];
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n, m, p;
cin >> n >> p >> m;
for (int i=0; i<p; i++)
cin >> a[i];
for (int i=0; i<m; i++)
{
int u, v, w;
cin >> u >> v >> w;
adj[u].push_back({v, w});
adj[v].push_back({u, w});
}
for (int i=0; i<(1<<p); i++)
for (int j=1; j<=n; j++)
dp[i][j]=1e18;
for (int i=0; i<p; i++)
dp[1<<i][a[i]]=0;
for (int i=1; i<(1<<p); i++)
{
for (int j=0; j<p; j++)
if (i&(1<<j))
for (int k=1; k<=n; k++)
dp[i][k]=min(dp[i][k], dp[i^(1<<j)][k]+dp[1<<j][k]);
for (int j=1; j<=n; j++)
if (dp[i][j]<1e18)
pq.push({-dp[i][j], j});
while (!pq.empty())
{
int u=pq.top().second, d=pq.top().first;
pq.pop();
if (dp[i][u]!=-d)
continue;
for (int j=0; j<adj[u].size(); j++)
{
int v=adj[u][j].first, w=adj[u][j].second;
if (dp[i][u]+w<dp[i][v])
{
dp[i][v]=dp[i][u]+w;
pq.push({-dp[i][v], v});
}
}
}
}
long long ans=1e18;
for (int i=1; i<=n; i++)
ans=min(ans, dp[(1<<p)-1][i]);
cout << ans;
return 0;
}
Compilation message
cities.cpp: In function 'int main()':
cities.cpp:43:28: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
43 | for (int j=0; j<adj[u].size(); j++)
| ~^~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
2644 KB |
Output is correct |
2 |
Correct |
3 ms |
2692 KB |
Output is correct |
3 |
Correct |
3 ms |
2656 KB |
Output is correct |
4 |
Correct |
2 ms |
2644 KB |
Output is correct |
5 |
Correct |
2 ms |
2772 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
139 ms |
15192 KB |
Output is correct |
2 |
Correct |
415 ms |
16928 KB |
Output is correct |
3 |
Incorrect |
54 ms |
12044 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
2900 KB |
Output is correct |
2 |
Correct |
5 ms |
2900 KB |
Output is correct |
3 |
Incorrect |
2 ms |
2900 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
128 ms |
21444 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
161 ms |
34004 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |