# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
45073 | 2018-04-11T06:50:44 Z | nibnalin | Cities (BOI16_cities) | C++17 | 4000 ms | 38164 KB |
#include <iostream> #include <cstdio> #include <vector> #include <set> using namespace std; typedef long long int lli; const int maxn = lli(1e5)+5, maxk = 6; const lli inf = lli(1e17)+5; int n, A[maxk], marker[maxn]; lli D[maxk][maxn], dp[(1<<maxk)][maxn]; vector<pair<int, lli>> graph[maxn]; void dijkstra(int type, int node) { for(int i = 0;i < n;i++) D[type][i] = inf; D[type][node] = 0; set<pair<lli, int>> Q; Q.insert({D[type][node], node}); while(!Q.empty()) { pair<lli, int> top = *Q.begin(); Q.erase(Q.begin()); for(auto it: graph[top.second]) { if(D[type][it.first] > D[type][top.second]+it.second) { if(D[type][it.first] != inf) Q.erase({D[type][it.first], it.first}); D[type][it.first] = D[type][top.second]+it.second; Q.insert({D[type][it.first], it.first}); } } } } int main(void) { int k, m, u, v; lli w; scanf("%d%d%d", &n, &k, &m); for(int i = 0;i < k;i++) { scanf("%d", &A[i]); A[i]--; } for(int i = 0;i < m;i++) { scanf("%d%d%lld", &u, &v, &w); u--, v--; graph[u].push_back({v, w}), graph[v].push_back({u, w}); } for(int i = 0;i < k;i++) dijkstra(i, A[i]); for(int mask = 1;mask < (1<<k);mask++) { set<pair<lli, int>> Q; for(int i = 0;i < n;i++) { dp[mask][i] = inf, marker[i] = 0; for(int j = 0;j < k;j++) { if((mask&(1<<j))) dp[mask][i] = min(dp[mask][i], dp[(mask^(1<<j))][i]+D[j][i]); } Q.insert({dp[mask][i], i}); } while(!Q.empty()) { pair<lli, int> top = *Q.begin(); Q.erase(Q.begin()); if(marker[top.second]) continue; marker[top.second] = 1; for(auto it: graph[top.second]) { if(dp[mask][it.first] > dp[mask][top.second]+it.second) { dp[mask][it.first] = dp[mask][top.second]+it.second; Q.insert({dp[mask][it.first], it.first}); } } } } lli res = inf; for(int i = 0;i < n;i++) res = min(res, dp[(1<<k)-1][i]); printf("%lld\n", res); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 4 ms | 2680 KB | Output is correct |
2 | Correct | 4 ms | 2788 KB | Output is correct |
3 | Correct | 4 ms | 2852 KB | Output is correct |
4 | Correct | 4 ms | 2884 KB | Output is correct |
5 | Correct | 4 ms | 3012 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1758 ms | 30232 KB | Output is correct |
2 | Correct | 1879 ms | 30784 KB | Output is correct |
3 | Correct | 967 ms | 30784 KB | Output is correct |
4 | Correct | 149 ms | 30784 KB | Output is correct |
5 | Correct | 891 ms | 30784 KB | Output is correct |
6 | Correct | 122 ms | 30784 KB | Output is correct |
7 | Correct | 8 ms | 30784 KB | Output is correct |
8 | Correct | 7 ms | 30784 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 13 ms | 30784 KB | Output is correct |
2 | Correct | 14 ms | 30784 KB | Output is correct |
3 | Correct | 10 ms | 30784 KB | Output is correct |
4 | Correct | 9 ms | 30784 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3891 ms | 37468 KB | Output is correct |
2 | Execution timed out | 4097 ms | 37468 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 4049 ms | 38164 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |