# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
34556 | Extazy | Bosses (BOI16_bosses) | C++14 | 803 ms | 2452 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define endl '\n'
using namespace std;
const int N = 5007;
int n,ans;
vector < int > v[N];
bool used[N];
int level[N];
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int i;
scanf("%d", &n);
for(i=1;i<=n;i++) {
int x;
scanf("%d", &x);
while(x--) {
int y;
scanf("%d", &y);
v[y].push_back(i);
}
}
ans=numeric_limits < int >::max();
for(int root=1;root<=n;root++) {
int cnt=0,curr=0;
queue < int > q;
memset(used,0,sizeof(used));
used[root]=true;
level[root]=1;
q.push(root);
while(!q.empty()) {
int where=q.front();
q.pop();
++cnt;
curr+=level[where];
for(i=0;i<(int)(v[where].size());i++) {
if(!used[v[where][i]]) {
used[v[where][i]]=true;
level[v[where][i]]=level[where]+1;
q.push(v[where][i]);
}
}
}
if(cnt==n) ans=min(ans,curr);
}
printf("%d\n", ans);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |