# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1086426 | hahahaha | Bosses (BOI16_bosses) | C++17 | 408 ms | 680 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
using namespace std;
bool ok = 0;
const int maxn = 5000 + 7;
int n , h[maxn] , ans = 1e18;
vector <int> g[maxn];
void bfs(int s)
{
for(int i = 1; i <= n; i++) h[i] = -1;
queue <int> node;
node.push(s);
h[s] = 1;
while(!node.empty())
{
int u = node.front();
for(int v: g[u])
{
if(h[v] == -1)
{
h[v] = h[u] + 1;
node.push(v);
}
}
node.pop();
}
int cnt = 0;
bool check = 1;
for(int i = 1; i <= n; i++)
{
if(h[i] == -1) check = 0;
cnt += h[i];
}
if(check) ans = min(ans , cnt);
}
void solve()
{
cin >> n;
for(int i = 1; i <= n; i++)
{
int s , k; cin >> s;
while(s--)
{
cin >> k;
g[k].push_back(i);
}
}
for(int i = 1; i <= n; i++)
{
bfs(i);
}
cout << ans << '\n';
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
solve();
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... |