# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
62051 | 2018-07-27T10:10:35 Z | Crown | Cities (BOI16_cities) | C++14 | 3384 ms | 59036 KB |
//Power Of Ninja Go #include <bits/stdc++.h> //#ifdef atom #else #endif using namespace std; typedef long long ll; typedef pair<int, int> ii; typedef vector<int> vi; typedef vector< ii > vii; #define X first #define Y second #define pb push_back const int maxn = 1e5+5; vii adj[maxn]; ll dp[32][maxn]; int main() { int n, k, m; scanf("%d %d %d", &n, &k, &m); vi imp; imp.resize(k); for(int i = 0; i< k; i++) scanf("%d", &imp[i]); for(int i = 0; i< m; i++) { int u, v, w; scanf("%d %d %d", &u, &v, &w); adj[u].pb(ii(v, w)); adj[v].pb(ii(u, w)); } for(int a = 0; a< 32; a++) { for(int u = 1; u<= n; u++) dp[a][u] = 4e18; } for(int i = 0; i< k; i++) { dp[1<<i][imp[i]] = 0; } for(int bit = 1; bit< (1<<k); bit++) { for(int part = 0; part< bit; part++) { if((part | bit) != bit) continue; int rem = bit-part; for(int u = 1; u<= n; u++) dp[bit][u] = min(dp[bit][u], dp[part][u]+dp[rem][u]); } priority_queue< pair<ll, int> > pq; for(int i = 1; i<= n; i++) { if(dp[bit][i] != 4e18) { pq.push(make_pair(-dp[bit][i], i)); } } while(!pq.empty()) { ll w = -pq.top().X; int u = pq.top().Y; pq.pop(); if(dp[bit][u] != w) continue; for(auto edge : adj[u]) { int v = edge.X, w = edge.Y; if(dp[bit][v]> dp[bit][u]+w) { dp[bit][v] = dp[bit][u]+w; pq.push(make_pair(-dp[bit][v], v)); } } } } ll res = 4e18; for(int i = 1; i<= n; i++) res = min(res, dp[(1<<k)-1][i]); cout << res << endl; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 4 ms | 2812 KB | Output is correct |
2 | Correct | 4 ms | 2948 KB | Output is correct |
3 | Correct | 5 ms | 2992 KB | Output is correct |
4 | Correct | 4 ms | 2992 KB | Output is correct |
5 | Correct | 5 ms | 3036 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 945 ms | 40700 KB | Output is correct |
2 | Correct | 964 ms | 44872 KB | Output is correct |
3 | Correct | 644 ms | 44872 KB | Output is correct |
4 | Correct | 138 ms | 44872 KB | Output is correct |
5 | Correct | 549 ms | 52564 KB | Output is correct |
6 | Correct | 104 ms | 52564 KB | Output is correct |
7 | Correct | 11 ms | 52564 KB | Output is correct |
8 | Correct | 8 ms | 52564 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 11 ms | 52564 KB | Output is correct |
2 | Correct | 13 ms | 52564 KB | Output is correct |
3 | Correct | 10 ms | 52564 KB | Output is correct |
4 | Correct | 12 ms | 52564 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2137 ms | 55312 KB | Output is correct |
2 | Correct | 1757 ms | 55312 KB | Output is correct |
3 | Correct | 1192 ms | 55312 KB | Output is correct |
4 | Correct | 1056 ms | 55312 KB | Output is correct |
5 | Correct | 291 ms | 55312 KB | Output is correct |
6 | Correct | 124 ms | 55312 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3276 ms | 55776 KB | Output is correct |
2 | Correct | 3225 ms | 59036 KB | Output is correct |
3 | Correct | 3384 ms | 59036 KB | Output is correct |
4 | Correct | 2760 ms | 59036 KB | Output is correct |
5 | Correct | 1710 ms | 59036 KB | Output is correct |
6 | Correct | 416 ms | 59036 KB | Output is correct |
7 | Correct | 137 ms | 59036 KB | Output is correct |