# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1093474 | raphaelp | Bosses (BOI16_bosses) | C++14 | 424 ms | 656 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main()
{
int N;
cin >> N;
vector<vector<int>> AR(N);
for (int i = 0; i < N; i++)
{
int k;
cin >> k;
for (int j = 0; j < k; j++)
{
int x;
cin >> x;
x--;
AR[x].push_back(i);
}
}
int best = 1000000000;
for (int root = 0; root < N; root++)
{
vector<int> occ(N);
occ[root] = 1;
int score = 0, nb = 0;
queue<int> Q;
Q.push(root);
while (!Q.empty())
{
int x = Q.front();
nb++;
Q.pop();
score += occ[x];
for (int i = 0; i < AR[x].size(); i++)
{
if (occ[AR[x][i]] == 0)
{
occ[AR[x][i]] = occ[x] + 1;
Q.push(AR[x][i]);
}
}
}
if (nb == N)
best = min(best, score);
}
cout << best;
}
컴파일 시 표준 에러 (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... |