이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
using namespace std;
#define int long long
signed main () {
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
int n, ans = LLONG_MAX;
cin >> n;
vector <int> g[n], g2[n];
for(int i = 0; i < n; i ++) {
int sz;
cin >> sz;
while(sz --) {
int v;
cin >> v;
g[v-1].push_back(i);
}
}
queue <int> q;
for(int i = 0; i < n; i ++) {
vector <int> dist(n, LLONG_MAX);
dist[i] = 0;
q.push(i);
vector <pair <int,int>> temp;
while(!q.empty()) {
int v = q.front();
q.pop();
for(auto u : g[v]) {
if(dist[u] == LLONG_MAX) {
temp.push_back({v, u});
dist[u] = dist[v] + 1;
q.push(u);
}
}
}
if(count(dist.begin(), dist.end(), LLONG_MAX)) continue;
vector <int> dp(n, 1);
function <void(int,int)> dfs=[&](int v, int p) {
for(auto u : g2[v]) {
if(p == u) continue;
dfs(u, v);
dp[v] += dp[u];
}
};
for(auto j : temp) g2[j.first].push_back(j.second);
dfs(i,-1);
ans = min(ans, accumulate(dp.begin(), dp.end(), 0LL));
for(auto &j : g2) j.clear();
}
cout << ans;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |