이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <bits/stdc++.h>
#define ll long long
using namespace std;
const ll maxn = 2*1e5+5, INF = 4e18+9;
void solve(){
int n;
cin >> n;
vector<int> a(n+1);
vector<vector<int>> boss(n+1), canboss(n+1);
for(int i = 1; i <= n; i++){
cin >> a[i];
for(int j = 1; j <= a[i]; j++){
int v;
cin >> v;
boss[i].push_back(v);
canboss[v].push_back(i);
}
}
vector<vector<int>> adj(n+1);
vector<int> cur, t, vis(n+1, 0);
ll ans = INF;
for(int root = 1; root <= n; root++){
ll res = 0;
ll left = n-1;
for(int i = 1; i <= n; i++) vis[i] = 0;
vis[root] = 1;
cur.push_back(root);
for(ll d = 1; d <= n; d++){
if(cur.empty()) break;
t.clear();
res += d*cur.size();
for(int i : cur){
while(!canboss[i].empty()){
int j = canboss[i].back();
canboss[i].pop_back();
if(vis[j]) continue;
vis[j] = true;
t.push_back(j);
left--;
}
}
cur = t;
}
if(left > 0) res = INF;
ans = min(ans, res);
}
cout << ans;
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
solve();
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |