# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
338155 | KazamaHoang | Cities (BOI16_cities) | C++14 | 287 ms | 26212 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/* -> Written by <-
-----------
K_A_Z_A_M_A
___________
_ |
| (^_^) |
| /( | )\ |
|____|_|____|
H O A N G
*/
#include <bits/stdc++.h>
#define Task ""
#define F first
#define S second
#define pb push_back
#define bit(x, i) ((x >> (i)) & 1)
#define inf 1e9 + 7
#define INF 1e18 + 7
#define ll long long
#define pii pair <int, int>
#define debug(x) cerr << #x << " is " << x << "\n";
using namespace std;
const int MOD = 1e9 + 7;
const int maxn = 1e5 + 5;
int n, k, m;
vector <pair<int, int>> ke[maxn];
int b[maxn];
ll d[4][maxn];
void ijk(int u, ll dis[]){
priority_queue <pair<ll, int>> pq;
fill(dis + 1, dis + 1 + n, INF);
dis[u] = 0;
pq.push({0, u});
while (!pq.empty()){
int u = pq.top().S;
ll l = - pq.top().F;
pq.pop();
if (l > dis[u]) continue;
for (auto p : ke[u]){
int v = p.F;
int w = p.S;
if (dis[v] > dis[u] + w){
dis[v] = dis[u] + w;
pq.push({-dis[v], v});
}
}
}
}
void Solve(){
cin >> n >> k >> m;
for (int i = 1; i <= k; ++ i){
cin >> b[i];
}
for (int i = 1; i <= m; ++ i){
int u, v, w;
cin >> u >> v >> w;
ke[u].pb({v, w});
ke[v].pb({u, w});
}
for (int i = 1; i <= k; ++ i){
ijk(b[i], d[i]);
}
ll res = INF;
for (int i = 1; i <= n; ++ i){
ll cur = 0;
for (int j = 1; j <= k; ++ j){
cur += d[j][i];
}
res = min(res, cur);
}
cout << res;
}
int main(){
ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
if(fopen(Task".inp", "r")){
freopen(Task".inp","r",stdin);
freopen(Task".out","w",stdout);
}
int test_case = 1;
// cin >> test_case;
while (test_case --){
Solve();
}
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... |