이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
vector<int>adje[5005];
bool vis[5005];
long long biy;
int ct;
void BFS(int x) {
queue<pair<int,int>> q;
q.push({x, 1});
vis[x]=true;
while(!q.empty()) {
int node = q.front().first;
int ting = q.front().second;
q.pop();
biy+=(ting*1ll);
ct++;
for (auto itr:adje[node]) {
if(vis[itr]) continue;
vis[itr]=true;
q.push({itr, ting+1});
}
}
}
int main() {
int N, t, a;
cin >> N;
for (int i=1; i<=N; i++) {
cin >> t;
for (int j=1; j<=t; j++) {
cin >> a;
adje[a].push_back(i);
}
}
long long jawab = 1e18;
for (int i=1; i<=N; i++) {
ct = 0;
biy = 0;
memset(vis, 0, sizeof(vis));
BFS(i);
if(ct!=N) continue;
jawab = min(jawab, biy);
}
cout << jawab << endl;
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... |