# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
600705 | narvalo | 페리들 (NOI13_ferries) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int ferries(int n , int m , vector<int> a , vector<int> b , vector<int> c) {
vector<vector<pair<int , int>>> adj(n);
for (int i = 0 ; i < m ; i++) {
a[i] -= 1 , b[i] -= 1;
adj[a[i]].emplace_back(b[i] , c[i]);
adj[b[i]].emplace_back(a[i] , c[i]);
}
sort(c.rbegin() , c.rend());
if (m == n - 1) {
int ans = -1;
function<void(int , int , int)> Dfs = [&](int cur , int pre , int depth) {
if (cur == n - 1) {
ans = depth;
}
for (auto x : adj[cur]) {
if (x.first == pre) continue;
Dfs(x.first , cur , depth + 1);
}
return ;
};
Dfs(0 , -1 , 0);
int res = 0;
for (int i = 0 ; i < ans ; i += 1) {
res += c[i];
}
return res;
}
else {
int res = 0;
for (int i = 0 ; i < 2 ; i += 1) {
res += c[i];
}
return res;
}
}