-
Notifications
You must be signed in to change notification settings - Fork 0
/
P537.java
74 lines (53 loc) · 2.1 KB
/
P537.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
package aceptaelreto;
import java.util.*;
public class P537 {
static int indexOf(List<HashSet<Integer>> list, int num) {
for (int i = 0; i < list.size(); i++) {
if (list.get(i).contains(num)) return i;
}
return -1;
}
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
int P, C, r1, r2, A, B;
boolean good;
ArrayList<HashSet<Integer>> listaConexos = new ArrayList<>();
while (s.hasNext()) {
P = s.nextInt();
C = s.nextInt();
for (int i = 0; i < C; i++) {
A = s.nextInt();
B = s.nextInt();
r1 = indexOf(listaConexos, A);
r2 = indexOf(listaConexos, B);
// Si los dos no se encuentran creamos una lista con ellos
if (r1 == -1 && r2 == -1) {
HashSet<Integer> nuevaLista = new HashSet<>();
nuevaLista.add(A);
nuevaLista.add(B);
listaConexos.add(nuevaLista);
}
// si los dos se encuentran en diferentes listas
else if (r1 != -1 && r2 != -1 && r1 != r2) {
// fusionamos
HashSet<Integer> listDeleted = listaConexos.get(r1);
listaConexos.get(r2).addAll(listDeleted);
// eliminamos
listaConexos.remove(r1);
}
else if (r2 == -1) {
listaConexos.get(r1).add(B);
}
else if (r1 == -1) {
listaConexos.get(r2).add(A);
}
}
good = (listaConexos.size() == 1 &&
listaConexos.get(0).size() == P);
if (P == 1) good = true;
System.out.println( good ? "BICI" : "A PIE" );
listaConexos.clear();
}
s.close();
}
}