제출 #91848

#제출 시각아이디문제언어결과실행 시간메모리
91848karmaBosses (BOI16_bosses)C++11
100 / 100
568 ms748 KiB
#include<bits/stdc++.h>
#define For(i, a, b)  for(int i = a, _b = b; i <= _b; ++i)
#define Ford(i, a, b) for(int i = a, _b = b; i >= _b; --i)
#define FileName      "test"
#define ll            long long
#define ld            long double
#define ull           unsigned long
#define Print(x)      cerr << #x << "is " << x << '\n';
#define pb            push_back
#define X             first
#define Y             second
//#define Karma

using namespace std;

template<typename T> inline void Cin(T &x)
{
    char c;
    T sign = 1;
    x = 0;
    for (c = getchar(); c < '0' || c > '9'; c = getchar())
        if (c == '-') sign = -1;
    for (; c >= '0' && c <= '9'; c = getchar())
        x = x * 10 + c - '0';
    x *= sign;
}
template <typename T> inline void Out(T x) {if(x > 9) Out(x / 10); putchar(x % 10 + '0');}
template <typename T> inline void Cout(T x, char c) {if(x < 0) putchar('-'); x = abs(x); Out(x); putchar(c);}
template <typename T, typename... Args> inline void Cin(T& a, Args&... args) {Cin(a);Cin(args...);}
template <typename T, typename... Args> inline void Cout(T a, char c, Args... args) {Cout(a, c);Cout(args...);}

typedef pair<int, int> pii;
typedef pair<ll, int> plli;
const int N = 5e3 + 7;
const ll oo = 1e18 + 7;

int n, k, s, nVertex;
bool vis[N];
vector<int> a[N];
ll res, level[N];

void Enter()
{
     Cin(n);
     For(i, 1, n)
     {
         Cin(k);
         For(j, 1, k) Cin(s), a[s].pb(i);
     }
}

ll Build(int s)
{
    fill_n(level, n + 1, 0);
    ll res = 0;
    nVertex = n;
    queue<int> q;
    q.push(s);
    level[s] = 1;
    while(!q.empty())
    {
         int u = q.front();
         q.pop();
         --nVertex;
         res += level[u];
         for(int v: a[u])
             if(level[v] == 0)
                q.push(v), level[v] = level[u] + 1;
    }
    if(nVertex) return oo;
    return res;
}

void Solve()
{
     res = oo;
     For(i, 1, n) res = min(res, Build(i));
     cout << res;
}

int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0); cout.tie(0);
#ifdef Karma
    freopen(FileName".inp", "r", stdin);
    freopen(FileName".out", "w", stdout);
#endif // Karma

    Enter();
    Solve();

    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...