-
Notifications
You must be signed in to change notification settings - Fork 0
/
Questao4.java
101 lines (82 loc) · 2.37 KB
/
Questao4.java
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
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
public class Main {
static class Estacao{
private Integer estacao1;
private Integer estacaoLigada;
private String cor;
public Estacao(Integer estacao1, String cor, Integer estacaoLigada) {
super();
this.estacao1 = estacao1;
this.cor = cor;
this.estacaoLigada = estacaoLigada;
}
public String getCor() {
return cor;
}
public void setCor(String cor) {
this.cor = cor;
}
public Integer getEstacao1() {
return estacao1;
}
public void setEstacao1(Integer estacao1) {
this.estacao1 = estacao1;
}
public Integer getEstacaoLigada() {
return estacaoLigada;
}
public void setEstacaoLigada(Integer estacaoLigada) {
this.estacaoLigada = estacaoLigada;
}
}
private static Boolean estacaoConectada(List<Estacao> estacoes, Integer estacao){
for (int i = 0; i < estacao; i++) {
if(estacoes.get(i).getCor() == "BRANCO") {
return false;
}
}
return true;
}
public static void buscaEmProfundidade(List<Estacao> estacoes, Integer totalEstacao, Integer estacaoVerificar) {
estacoes.get(estacaoVerificar).setCor("CINZA");
for(int i = 0; i < totalEstacao; i++) {
if(estacoes.get(i).getCor().equals("BRANCO")
&& estacoes.get(estacaoVerificar).getEstacaoLigada().equals(estacoes.get(i).getEstacao1())){
buscaEmProfundidade(estacoes, totalEstacao, i);
}
}
}
public static void main(String[] args) {
Integer E, L, C1 = 0, C2 =0, j = 1;
Scanner sc = new Scanner(System.in);
List<Estacao> listaEstacoes = new ArrayList<Estacao>();
do {
E = sc.nextInt();
L = sc.nextInt();
if((E == 0) && (L == 0)) {
return;
}
for(int i = 1; i <= L; i++){
C1 = sc.nextInt();
C2 = sc.nextInt();
listaEstacoes.add(new Estacao(C1, "BRANCO", C2));
}
buscaEmProfundidade(listaEstacoes, L, 0);
if(estacaoConectada(listaEstacoes, L)){
System.out.println("Teste "+j);
System.out.println("normal");
System.out.println("");
}else {
System.out.println("Teste "+j);
System.out.println("falha");
System.out.println("");
}
listaEstacoes = new ArrayList<Estacao>();
j++;
}while(!E.equals(0) && !L.equals(0));
sc.close();
System.exit(0);
}
}