제출 #34556

#제출 시각아이디문제언어결과실행 시간메모리
34556ExtazyBosses (BOI16_bosses)C++14
100 / 100
803 ms2452 KiB
#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) 메시지

bosses.cpp: In function 'int main()':
bosses.cpp:18:20: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d", &n);
                    ^
bosses.cpp:21:24: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d", &x);
                        ^
bosses.cpp:24:28: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
             scanf("%d", &y);
                            ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...