-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gerenciador.cpp
206 lines (172 loc) · 7.47 KB
/
Gerenciador.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
#include "Gerenciador.h"
#include <algorithm>
#include <list>
#include <stack>
bool isVerticesAdjacentes(Grafo *grafo, int alunoA, int alunoB, int &comandante, int &comandado);
void trocaVerticesAlunos(Grafo *grafo, int comandante, int comandado);
bool contemCiclo(Grafo *grafo);
bool verificaCicloDFS(int verticeAtual, bool verticesVisitados[], bool pilhaRecursividade[], Grafo *grafo);
void criaOrdenadacaoTopologica(int verticeAtual, bool verticesVisitados[], stack<int>* pilha, Grafo grafo);
Grafo transporGrafo(Grafo grafo);
void defineComandanteMaisJovem(Grafo &grafo, int aluno, bool *verticesVisitados, list<int> &filaComandantes,
Grafo &grafoTransposto, int &menorIdade, int &comandanteMaisJovem);
//Realiza comando SWAP.
void executaSwap(Grafo *grafo, int alunoA, int alunoB) {
int comandante, comandado;
//verifica se alunoA e alunoB são adjacentes
if(!isVerticesAdjacentes(grafo, alunoA, alunoB, comandante, comandado)) {
cout << "S N" << endl;
return;
}
//realiza troca entre alunos e verifica se foi gerado um ciclo no grafo, desfazendo a troca em caso positivo
trocaVerticesAlunos(grafo, comandante, comandado);
if(contemCiclo(grafo)) {
trocaVerticesAlunos(grafo, comandado, comandante);
cout << "S N" << endl;
} else {
cout << "S T" << endl;
}
}
//Verifica se vertices são adjacentes.
bool isVerticesAdjacentes(Grafo *grafo, int alunoA, int alunoB, int &comandante, int &comandado) {
bool verticesAdjacentes = true;
vector<int> comandadosAlunoA = grafo->getListaVertices()[alunoA - 1]->verticesAdjacentes;
vector<int> comandadosAlunoB = grafo->getListaVertices()[alunoB - 1]->verticesAdjacentes;
if(find(comandadosAlunoA.begin(), comandadosAlunoA.end(), alunoB) != comandadosAlunoA.end()) {
comandante = alunoA;
comandado = alunoB;
} else if(find(comandadosAlunoB.begin(), comandadosAlunoB.end(), alunoA) != comandadosAlunoB.end()) {
comandante = alunoB;
comandado = alunoA;
} else {
verticesAdjacentes = false;
}
return verticesAdjacentes;
}
//Verifica se grafo possui ciclo realizando uma DFS com uso de pilha recursiva.
bool contemCiclo(Grafo *grafo) {
int qtdVertices = grafo->getQuantidadeVertices();
bool verticesVisitados[qtdVertices], pilhaRecursiva[qtdVertices];
for(int i=0; i<qtdVertices; i++) {
verticesVisitados[i] = false;
pilhaRecursiva[i] = false;
}
for(int i=0; i<qtdVertices; i++) {
if(verificaCicloDFS(i, verticesVisitados, pilhaRecursiva, grafo)) {
return true;
}
}
return false;
}
//Funcao recursiva que realiza DFS no grafo, retornando se esse é ciclico ou não.
bool verificaCicloDFS(int verticeAtual, bool verticesVisitados[], bool pilhaRecursividade[], Grafo *grafo) {
if(!verticesVisitados[verticeAtual]) {
verticesVisitados[verticeAtual] = true;
pilhaRecursividade[verticeAtual] = true;
for(auto i : grafo->getListaVertices()[verticeAtual]->verticesAdjacentes) {
if(!verticesVisitados[i-1] && verificaCicloDFS(i-1, verticesVisitados, pilhaRecursividade, grafo)) {
return true;
} else if (pilhaRecursividade[i-1]) {
return true;
}
}
}
pilhaRecursividade[verticeAtual] = false;
return false;
}
//Realiza troca entre dois vertices do grafo.
void trocaVerticesAlunos(Grafo *grafo, int comandante, int comandado) {
vector<int>* listaAdjacenciaComandante = &grafo->getListaVertices()[comandante - 1]->verticesAdjacentes;
vector<int>* listaAdjacenciaComandado = &grafo->getListaVertices()[comandado - 1]->verticesAdjacentes;
listaAdjacenciaComandante->erase(remove(listaAdjacenciaComandante->begin(), listaAdjacenciaComandante->end(), comandado),
listaAdjacenciaComandante->end());
listaAdjacenciaComandado->push_back(comandante);
}
//Realiza comando COMMANDER.
void executaCommander(Grafo grafo, int aluno) {
int qtdVertices = grafo.getQuantidadeVertices();
bool verticesVisitados[qtdVertices];
int menorIdade = INT32_MAX, comandanteMaisJovem = -1;
list<int> filaComandantes;
//Inicializa todos vertices como nao visitado
for(int i=0; i<qtdVertices; i++) {
verticesVisitados[i] = false;
}
verticesVisitados[aluno-1] = true;
filaComandantes.push_back(aluno);
//Gera grafo transposto
Grafo grafoTransposto = transporGrafo(grafo);
//Percorre grafo transposto a fim de achar o comandante mais jovem de um aluno.
defineComandanteMaisJovem(grafo, aluno, verticesVisitados, filaComandantes, grafoTransposto, menorIdade,
comandanteMaisJovem);
if(comandanteMaisJovem == -1) {
cout << "C *" << endl;
} else {
cout << "C " << menorIdade << endl;
}
}
//Retorna grafo transposto.
Grafo transporGrafo(Grafo grafo) {
Grafo grafoTransposto;
vector<Vertice*> listaVerticesTransposta;
for(int i=0; i<grafo.getQuantidadeVertices(); i++) {
listaVerticesTransposta.push_back(new Vertice(*grafo.getListaVertices()[i]));
listaVerticesTransposta[i]->verticesAdjacentes.clear();
}
grafoTransposto.setListaVertices(listaVerticesTransposta);
for(int i=0; i<grafo.getQuantidadeVertices(); i++) {
for(int j=0; j<int(grafo.getListaVertices()[i]->verticesAdjacentes.size()); j++) {
grafoTransposto.getListaVertices()[grafo.getListaVertices()[i]->verticesAdjacentes[j]-1]->verticesAdjacentes.push_back(i+1);
}
}
return grafoTransposto;
}
//Busca comandante mais jovem de aluno ao percorrer grafo transposto.
void defineComandanteMaisJovem(Grafo &grafo, int aluno, bool *verticesVisitados, list<int> &filaComandantes,
Grafo &grafoTransposto, int &menorIdade, int &comandanteMaisJovem) {
int alunoAtual;
while(!filaComandantes.empty()) {
alunoAtual = filaComandantes.front();
filaComandantes.pop_front();
if((grafo.getListaVertices()[alunoAtual - 1]->valor < menorIdade || comandanteMaisJovem == -1) && alunoAtual!=aluno) {
menorIdade = grafo.getListaVertices()[alunoAtual - 1]->valor;
comandanteMaisJovem = alunoAtual;
}
for(auto i : grafoTransposto.getListaVertices()[alunoAtual-1]->verticesAdjacentes) {
if(!verticesVisitados[i-1]) {
verticesVisitados[i-1] = true;
filaComandantes.push_back(i);
}
}
}
}
//Realiza comando MEETING.
void executaMeeting(Grafo grafo) {
int qtdVertices = grafo.getQuantidadeVertices();
stack<int> pilha;
bool verticesVisitados[qtdVertices];
for(int i=0; i<qtdVertices; i++) {
verticesVisitados[i] = false;
}
for(int i=0; i<qtdVertices; i++) {
if(!verticesVisitados[i]) {
criaOrdenadacaoTopologica(i, verticesVisitados, &pilha, grafo);
}
}
cout << "M";
while(!pilha.empty()) {
cout << " " << pilha.top()+1;
pilha.pop();
}
cout << endl;
}
//Ordena vertices do grafo por meio de ordem topologica em uma pilha.
void criaOrdenadacaoTopologica(int verticeAtual, bool verticesVisitados[], stack<int>* pilha, Grafo grafo) {
verticesVisitados[verticeAtual] = true;
for(auto i : grafo.getListaVertices()[verticeAtual]->verticesAdjacentes) {
if(!verticesVisitados[i-1]) {
criaOrdenadacaoTopologica(i-1, verticesVisitados, pilha, grafo);
}
}
pilha->push(verticeAtual);
}