# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
208585 | DodgeBallMan | Cities (BOI16_cities) | C++14 | 6061 ms | 235700 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pii pair<long long, long long>
#define x first
#define y second
using namespace std;
const int N = 1e5 + 2;
vector<pii> g[N];
vector<int> bit[10];
long long d[N][1<<5], ans = 1e18;
int n, k, m, id[N];
int main()
{
memset( id, -1, sizeof id );
fill( d[0], d[0]+N*(1<<5), ans );
scanf("%d %d %d",&n,&k,&m);
for( int i = 0, a ; i < k ; i++ ) {
scanf("%d",&a);
id[a] = i;
}
for( int i = 0, a, b ; i < m ; i++ ) {
long long d;
scanf("%d %d %lld",&a,&b,&d);
g[a].emplace_back( pii( b, d ) ), g[b].emplace_back( pii( a, d ));
}
for( int i = 1 ; i < ( 1 << k ) ; i++ ){
bit[__builtin_popcount( i )].emplace_back( i );
}
for( int b = 1 ; b <= k ; b++ ) {
priority_queue<pair<long long, pii>> q;
if( b == 1 ) {
for( int i = 1 ; i <= n ; i++ ) if( id[i] != -1 ) q.emplace( d[i][(1<<id[i])] = 0, pii( i, (1<<id[i] ) ) );
}
else {
for( int i = 1 ; i <= n ; i++ ) for( int x : bit[b] ) {
for( int j = 0 ; j < ( 1 << k ) ; j++ ) {
if( ( x & j ) != j ) continue ;
d[i][x] = min( d[i][x], d[i][j] + d[i][x^j] );
q.emplace( -1*d[i][x], pii( i, x ) );
}
}
}
while( !q.empty() ) {
auto now = q.top();
q.pop();
if( d[now.y.x][now.y.y] != -now.x ) continue;
long long di = -now.x;
int u = now.y.x, bi = now.y.y;
for( pii v : g[u] ) if( d[v.x][bi] > di + v.y ) {
d[v.x][bi] = di + v.y;
q.emplace( -1*d[v.x][bi], pii( v.x, bi ) );
}
}
}
for( int i = 1 ; i <= n ; i++ ) ans = min( ans, d[i][(1<<k)-1] );
printf("%lld",ans);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |