# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
758823 | nihon | Bosses (BOI16_bosses) | C++14 | 409 ms | 696 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define N 5005
using namespace std;
int n,i,j,x,k,f[N],g[N],t,z,mn=2e9;
vector<int> v[N];
struct elem
{
int x;
int t;
}q[N];
void bfs()
{
int st=1,dr=1,p;
f[i]=1;
q[st].x=i;
q[st].t=1;
while(st<=dr)
{
int y=q[st].x;
for(j=0;j<v[y].size();++j)
{
if(!f[v[y][j]])
{
++dr;
++z;
q[dr].x=v[y][j];
q[dr].t=q[st].t+1;
t+=q[dr].t;
f[v[y][j]]=1;
}
}
++st;
}
if(z<n) t=2e9;
}
int main()
{
cin>>n;
for(i=1;i<=n;++i)
{
cin>>k;
for(j=1;j<=k;++j)
{
cin>>x;
v[x].push_back(i);
}
}
for(i=1;i<=n;++i)
{
t=1; z=1;
for(j=1;j<=n;++j)
{
f[j]=0;
g[j]=0;
}
bfs();
mn=min(mn,t);
}
cout<<mn;
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... |