# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
961435 | zeta7532 | 도로 폐쇄 (APIO21_roads) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "roads.h"
#include <bits/stdc++.h>
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
using namespace std;
using ll = long long;
const ll mod = 998244353;
const ll INF = 1LL<<60;
#define fi first
#define se second
#define rep(i,n) for(ll i=0;i<n;i++)
#define all(x) x.begin(),x.end()
#define faster ios::sync_with_stdio(false);cin.tie(nullptr)
#include <vector>
std::vector<long long> minimum_closure_costs(int N, std::vector<int> U,
std::vector<int> V,
std::vector<int> W) {
vector<vector<ll>> dp(N,vector<ll>(N+1,0));
vector<vector<pair<ll,ll>>> G(N);
rep(i,N-1){
U[i]--,V[i]--;
G[U[i]].push_back({V[i],W[i]});
G[V[i]].push_back({U[i],W[i]});
}
vector<ll> ans(N,0);
rep(deg,N){
function<void(ll)> dfs=[&](ll v,ll par){
for(auto e:G[v]){
dfs(e.fi,v);
}
}
}
return ans;
}