# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
492866 |
2021-12-09T11:46:29 Z |
LastRonin |
Cities (BOI16_cities) |
C++14 |
|
6000 ms |
262148 KB |
#pragma GCC optimize("O3")
#pragma GCC target("popcnt")
#include <bits/stdc++.h>
#define pb push_back
#define ll long long
#define ull unsigned long long
#define mp make_pair
#define si short int
#define speed ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0)
#define pill pair<ll,ll>
#define f first
#define s second
#define pilc pair<ll,char>
#define all(a) (a).begin(),(a).end()
#define rep(s,e,step) for(int i = (s); i < (e) ; i += step)
#define vrep(s,e,step) for(int j = (s); j < (e) ; j += step)
#define ex exit(0)
#define triple pair<pill, ll>
#define pinode pair<node*, node*>
#define quadra pair<pill, pill>
#define ld double
#define pild pair<double,double>
using namespace std;
const ll N = 1e5 + 11;
const ll M = 32;
const ll mod = 998244353;
mt19937_64 bruh(chrono::steady_clock::now().time_since_epoch().count());
ll n, m, k;
ll dp[N][M];
set<pair<ll, pill>> pd;
vector<pill> g[N];
ll x[N];
int main() {
speed;
cin >> n >> k >> m;
for(int i = 0; i < k; i++)
cin >> x[i];
for(int i = 1; i <= m; i++) {
ll a, b, c;
cin >> a >> b >> c;
g[a].pb(mp(b, c));
g[b].pb(mp(a, c));
}
for(int i = 1; i <= n; i++) {
for(int j = 1; j < (1<<k); j++)
dp[i][j] = 1e17;
pd.insert(mp(0, mp(i, 0)));
}
for(int i = 0; i < k; i++) {
dp[x[i]][1<<i] = 0;
pd.insert(mp(0, mp(x[i], 1<<i)));
}
while(pd.size()) {
pill v = (*pd.begin()).s;
pd.erase(pd.begin());
for(auto u : g[v.f]) {
for(int msk = 0; msk < (1<<k); msk++) {
if(!(msk&v.s)) {
if(dp[u.f][msk|v.s] > dp[u.f][msk] + u.s + dp[v.f][v.s]) {
dp[u.f][msk|v.s] = dp[u.f][msk] + u.s + dp[v.f][v.s],
pd.insert(mp(dp[u.f][msk|v.s], mp(u.f, msk | v.s)));
}
}
}
}
}
ll ans = 1e17;
for(int i = 1; i <= n; i++)
ans = min(ans, dp[i][(1<<k) - 1]);
cout << ans;
}
/*
5 3 1
1 2 4 7 11
5 7 10
1 3 2
*/
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
2636 KB |
Output is correct |
2 |
Correct |
1 ms |
2636 KB |
Output is correct |
3 |
Correct |
2 ms |
2636 KB |
Output is correct |
4 |
Correct |
2 ms |
2636 KB |
Output is correct |
5 |
Correct |
2 ms |
2764 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2678 ms |
93416 KB |
Output is correct |
2 |
Correct |
2279 ms |
82692 KB |
Output is correct |
3 |
Correct |
652 ms |
50116 KB |
Output is correct |
4 |
Correct |
280 ms |
17980 KB |
Output is correct |
5 |
Correct |
696 ms |
54300 KB |
Output is correct |
6 |
Correct |
117 ms |
15608 KB |
Output is correct |
7 |
Correct |
7 ms |
3456 KB |
Output is correct |
8 |
Correct |
4 ms |
3208 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
21 ms |
4772 KB |
Output is correct |
2 |
Correct |
18 ms |
4188 KB |
Output is correct |
3 |
Correct |
10 ms |
3532 KB |
Output is correct |
4 |
Correct |
14 ms |
4044 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
6099 ms |
214928 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
5235 ms |
262148 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |