# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
30928 | 2017-08-01T06:51:40 Z | Navick | Cities (BOI16_cities) | C++14 | 273 ms | 36840 KB |
#include <bits/stdc++.h> #define F first #define S second #define pii pair<int, int> #define pb push_back using namespace std; typedef long long ll; typedef long double ld; const int N = 1e5 + 10, K = 5; const ll INF = 1e18; ll dp[N][1 << K]; vector<pii> adj[N]; int que[3 * N], st, en; int imp[K]; bool see[N]; int main(){ int n, k, m; scanf("%d %d %d", &n, &k, &m); for(int i=0; i<k; i++){ int v; scanf("%d", &v); imp[i] = v; } for(int i=0; i<m; i++){ int u, v, w; scanf("%d %d %d", &u, &v, &w); adj[u].pb({v, w}); adj[v].pb({u, w}); } for(int mask=1; mask<(1 << k); mask++){ st = en = 0; for(int i=1; i<=n; i++){ dp[i][mask] = INF; for(int t=mask; t; t=mask & (t - 1)) dp[i][mask] = min(dp[i][mask], dp[i][t] + dp[i][mask ^ t]); que[en++] = i; see[i] = true; } if(__builtin_popcount(mask) == 1){ for(int j=0; j<k; j++) if(mask & (1 << j)) dp[imp[j]][mask] = 0; } while(en - st){ int v = que[st++]; see[v] = false; for(auto X : adj[v]){ int u = X.F, w = X.S; if(dp[u][mask] > dp[v][mask] + w){ dp[u][mask] = dp[v][mask] + w; if(!see[u]) que[en++] = u; } } } } ll res = INF; for(int i=1; i<=n; i++) res = min(res, dp[i][(1 << k) - 1]); printf("%lld\n", res); }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 30636 KB | Output is correct |
2 | Correct | 0 ms | 30636 KB | Output is correct |
3 | Correct | 0 ms | 30636 KB | Output is correct |
4 | Correct | 0 ms | 30636 KB | Output is correct |
5 | Correct | 0 ms | 30636 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 273 ms | 36840 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 30768 KB | Output is correct |
2 | Correct | 3 ms | 30768 KB | Output is correct |
3 | Correct | 6 ms | 30636 KB | Output is correct |
4 | Correct | 3 ms | 30768 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 256 ms | 36840 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 259 ms | 36840 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |