이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ull unsigned long long
#define ld long double
#define fi first
#define se second
#define pb push_back
#define mp make_pair
#define all(a) a.begin(), a.end()
vector<int> adj[5001];
bool vis[5001];
int val, answer = 2e9;
void bfs(int cur){
queue<pair<int, int>> q;
q.push({cur, 1});
while(!q.empty()){
pair<int, int> now = q.front(); q.pop();
val += now.second;
vis[now.first] = 1;
for(int nx : adj[now.first]){
if(!vis[nx]){
q.push({nx, now.second + 1});
}
}
}
}
void solve(){
int n; cin >> n;
for(int i = 1; i <= n; ++i){
int k; cin >> k;
for(int j = 1; j <= k; ++j){
int x; cin >> x;
adj[x].push_back(i);
}
}
for(int i = 1; i <= n; ++i){
fill(vis, vis + n + 1, 0);
val = 0;
bfs(i);
answer = min(answer, val);
}
cout << answer;
return;
}
int main(){
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
int tc = 1; //cin >> tc;
while(tc--){
solve();
}
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... |