# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
42388 | Hassoony | Bosses (BOI16_bosses) | C++11 | 686 ms | 1132 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include<unordered_map>
#define F first
#define S second
using namespace std;
typedef long long ll;
typedef long double D;
const ll inf=(1ll<<61);
const ll mod=1e9+7;
const int MX=5002;
int n,k,x;
bool vis[MX];
int val[MX];
vector<int>v[MX],v1[MX];
int ans,mn=1e9;
int main(){
scanf("%d",&n);
for(int i=1;i<=n;i++){
scanf("%d",&k);
while(k--){
scanf("%d",&x);
v[x].push_back(i);
}
}
for(int i=1;i<=n;i++){
for(int j=1;j<=n;j++)vis[j]=0,val[j]=0;
queue<int>q;
q.push(i);
val[i]=vis[i]=1;
while(!q.empty()){
int x=q.front();q.pop();
for(auto pp:v[x]){
if(!vis[pp]){
vis[pp]=1;
q.push(pp);
val[pp]=val[x]+1;
}
}
}
ans=0;
for(int j=1;j<=n;j++)ans+=val[j];
bool b=1;
for(int j=1;j<=n;j++)if(!vis[j])b=0;
if(b)mn=min(mn,ans);
}
printf("%d\n",mn);
}
컴파일 시 표준 에러 (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... |