# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
425850 | dxz05 | Crocodile's Underground City (IOI11_crocodile) | C++14 | 5 ms | 7372 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "crocodile.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define MP make_pair
const ll INF = 1e18 + 1e8;
const int N = 3e5 + 3e2;
vector<pair<int, int>> g[N];
ll dp[N];
bool processed[N];
int cnt[N];
int travel_plan(int N, int M, int R[][2], int L[], int K, int P[]){
for (int i = 0; i < M; i++){
g[R[i][0]].emplace_back(R[i][1], L[i]);
g[R[i][1]].emplace_back(R[i][0], L[i]);
}
fill(dp, dp + N, INF);
priority_queue<pair<ll, int>> pq;
for (int i = 0; i < K; i++){
dp[P[i]] = 0;
pq.push(MP(0, P[i]));
}
while (!pq.empty()){
int v = pq.top().second; pq.pop();
if (processed[v]) continue;
processed[v] = true;
for (auto edge : g[v]){
int u = edge.first, w = edge.second;
vector<ll> vec;
for (auto now : g[u]){
int j = now.first, w = now.second;
if (dp[j] != INF) vec.push_back(dp[j] + w);
}
if (vec.size() < 2) continue;
sort(vec.begin(), vec.end());
if (dp[u] > vec[1]){
dp[u] = vec[1];
pq.push(MP(dp[u], u));
}
}
}
//for (int i = 0; i < N; i++) cout << dp[i] << ' ';
return dp[0];
}
/**
5 7 2
0 2 4
0 3 3
3 2 2
2 1 10
0 1 100
0 4 7
3 4 9
1 3
14
*/
Compilation message (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... |