# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
622582 | BhavayGoyal | 악어의 지하 도시 (IOI11_crocodile) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
template<class T> using oset =
tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
#define int long long
#define ld long double
#define ar array
#define vi vector<int>
#define vii vector<vector<int>>
#define pii pair<int, int>
#define pb push_back
#define all(x) x.begin(), x.end()
#define f first
#define s second
#define endl "\n"
const int MOD = 1e9+7;
const int inf = 1e9;
const int linf = 1e18;
const int d4i[4]={-1, 0, 1, 0}, d4j[4]={0, 1, 0, -1};
const int d8i[8]={-1, -1, 0, 1, 1, 1, 0, -1}, d8j[8]={0, 1, 1, 1, 0, -1, -1, -1};
// -------------------------------------------------- Main Code --------------------------------------------------
const int N = 1005;
vector<array<int, 2>> g[N];
vi temp[N];
int dis[N], vis[N];
void dfs(int src) {
vis[src] = true;
for (auto ch : g[src]) {
int child = ch[0], wt = ch[1];
if (!vis[child]) {
dfs(child);
temp[src].pb(dis[child]+wt);
dis[src] = min(dis[src], dis[child] + wt);
}
}
if (g[src].size() == 1) dis[src] = 0;
else {
sort (all(temp[src]));
dis[src] = temp[src][1];
}
}
int travel_plan(int n, int m, int *r[2], int* l, int k, int *p) {
memset(dis, 63, sizeof dis);
vii edges;
for (int i = 0; i < m; i++) edges.pb({r[i][0], r[i][1]});
for (int i = 0; i < m; i++) edges[i].pb(l[i]);
for (int i = 0; i < k; i++) {
int x = p[i];
}
for (auto i : edges) {
int a = i[0], b = i[1], c = i[2];
g[a].pb({b, c});
g[b].pb({a, c});
}
dfs(0);
return dis[0];
}