# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
101867 | 2019-03-20T15:14:06 Z | shafinalam | Cities (BOI16_cities) | C++14 | 2760 ms | 44108 KB |
#include <bits/stdc++.h> using namespace std; const int mx = 1e5+5; typedef long long ll; typedef pair<int,ll>pii; #define sf scanf #define pf printf #define inf 1e16 #define ff first #define ss second #define MP make_pair #define pb push_back vector<pii>adj[mx]; ll dis[1<<5][mx]; int arr[10]; bool vis[mx]; int main() { int n, k, m; sf("%d%d%d", &n, &k, &m); for(int i = 1; i < (1<<k); i++) { for(int r = 1; r <= n; r++) dis[i][r] = inf; } for(int i = 0; i < k; i++) { sf("%d", &arr[i]); dis[1<<i][arr[i]] = 0; } while(m--) { int u, v; ll c; sf("%d%d%lld", &u, &v, &c); adj[u].push_back(make_pair(v, c)); adj[v].push_back(make_pair(u, c)); } for(int x = 1; x < (1<<k); x++) { for(int y = 0; y < x; y++) { if((x|y)==x) { for(int node = 1; node <= n; node++) dis[x][node] = min(dis[x][node], dis[x^y][node]+dis[y][node]), vis[node] = false;; } } priority_queue<pii, vector<pii>, greater<pii> >pq; for(int node = 1; node <= n; node++) { if(dis[x][node]<inf) pq.push(make_pair(dis[x][node], node)); } while(!pq.empty()) { pii top = pq.top(); pq.pop(); int u = top.ss; ll cost = top.ff; if(vis[u]) continue; vis[u] = 1; for(int i = 0; i < adj[u].size(); i++) { int v = adj[u][i].ff; ll c = adj[u][i].ss; if(dis[x][v]>cost+c) { dis[x][v] = cost+c; pq.push(make_pair(dis[x][v], v)); } } } } ll ans = inf; for(int i = 1; i <= n; i++) ans = min(ans, dis[(1<<k)-1][i]); pf("%lld\n", ans); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 2688 KB | Output is correct |
2 | Incorrect | 6 ms | 2816 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 844 ms | 25000 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 10 ms | 3072 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1504 ms | 31412 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2760 ms | 44108 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |