# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
699036 | Richem | Bosses (BOI16_bosses) | C++14 | 867 ms | 692 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
#include <vector>
#include <queue>
#include <stack>
using namespace std;
const int MAX_SOMMET = 5042, INF = 1e9;
int nbSommet;
vector<int> adj[MAX_SOMMET];
void input() {
cin >> nbSommet;
for(int sommet = 0; sommet < nbSommet; sommet++) {
int nbVoisin;
cin >> nbVoisin;
for(int iVoisin = 0; iVoisin < nbVoisin; iVoisin++) {
int idVoisin;
cin >> idVoisin;
adj[idVoisin-1].push_back(sommet);
}
}
}
bool vu[MAX_SOMMET];
int preced[MAX_SOMMET];
int rep[MAX_SOMMET] = {0};
int bfs(int depart) {
for(int sommet = 0; sommet < nbSommet; sommet++) {
vu[sommet] = rep[sommet] = 0;
}
queue<int> q;
stack<int> ordre;
q.push(depart);
vu[depart] = 1;
while(!q.empty()) {
int cur = q.front();
q.pop();
ordre.push(cur);
for(auto voisin : adj[cur]) {
if(!vu[voisin]) {
vu[voisin] = 1;
preced[voisin] = cur;
q.push(voisin);
}
}
}
if(ordre.size() != nbSommet) {
return INF;
}
int total = 0;
while(!ordre.empty()) {
int cur = ordre.top();
ordre.pop();
rep[cur]++;
if(cur != depart) {
rep[preced[cur]] += rep[cur];
}
total += rep[cur];
}
return total;
}
int main() {
input();
int valMin = INF;
for(int sommet = 0; sommet < nbSommet; sommet++) {
valMin = min(valMin, bfs(sommet));
}
cout << valMin;
}
Compilation message (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... |