# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
74914 | 2018-09-07T13:12:29 Z | Vardanyan | Cities (BOI16_cities) | C++14 | 6000 ms | 50808 KB |
//#pragma GCC optimize "-O3" #include <bits/stdc++.h> using namespace std; const int N = 1000*100+5; vector<pair<int,int> > g[N]; long long dp[N][(1<<5)+5]; bool c[N]; int a[6]; int IS[N]; int n,k; long long ans = 10000000000000005; void dfs(int v,int bitmask,long long val){ c[v] = 1; // cout<<bitmask<<endl; if(val>=ans) return; if(bitmask == (1<<k)-1){ ans = min(ans,val); return; } if(dp[v][bitmask]<=val && dp[v][bitmask] != -1) return; dp[v][bitmask] = val; for(int i = 0;i<g[v].size();i++){ int to = g[v][i].first; int x = g[v][i].second; if(c[to]) x = 0; // c[to] = 1; int btt = bitmask; if(IS[to] && !c[to]){ btt+=(1<<(IS[to]-1)); } dfs(to,btt,val+x); // c[to] = 0; } c[v] = 0; } int main(){ int m; scanf("%d%d%d",&n,&k,&m); for(int i = 1;i<=k;i++){ scanf("%d",&a[i]); IS[a[i]] = i; } for(int i = 1;i<=m;i++){ int x,y,z; scanf("%d%d%d",&x,&y,&z); g[x].push_back({y,z}); g[y].push_back({x,z}); } memset(dp,-1,sizeof(dp)); for(int i = 1;i<=k;i++){ memset(c,0,sizeof(c)); dfs(a[i],1<<(IS[a[i]]-1),0); } cout<<ans<<endl; return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 27 ms | 31736 KB | Output is correct |
2 | Incorrect | 28 ms | 31916 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 6053 ms | 41164 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 6080 ms | 41164 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 6067 ms | 44096 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 6067 ms | 50808 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |