-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path1706.cpp
55 lines (55 loc) · 1.37 KB
/
1706.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
// Ivan Carvalho
// Solution to https://www.beecrowd.com.br/judge/problems/view/1706
#include <cstdio>
#define MAXN 1001
int grafo[MAXN][MAXN], grau[MAXN], cor[MAXN], qtd1[MAXN], qtd2[MAXN],
componente, processado[MAXN], n, m;
void dfs(int x) {
processado[x] = 1;
qtd1[componente]++;
qtd2[componente] += cor[x];
for (int i = 0; i < grau[x]; i++) {
int u = grafo[x][i];
if (!processado[u]) {
dfs(u);
}
}
}
int main() {
while (scanf("%d %d", &n, &m) != EOF) {
componente = 0;
for (int i = 1; i <= n; i++) {
processado[i] = 0;
qtd1[i] = 0;
qtd2[i] = 0;
grau[i] = 0;
char davez;
scanf(" %c", &davez);
cor[i] = davez != 'A';
}
while (m--) {
int u, v;
scanf("%d %d", &u, &v);
grafo[u][grau[u]++] = v;
grafo[v][grau[v]++] = u;
}
for (int i = 1; i <= n; i++) {
if (!processado[i]) {
componente++;
dfs(i);
}
}
bool flag1 = false;
for (int i = 1; i <= componente; i++) {
if (qtd2[i] % 2 == 1) {
flag1 = true;
break;
}
}
if (flag1)
printf("N\n");
else
printf("Y\n");
}
return 0;
}