#include<vector>
using namespace std;
const int dim = 1000005;
int n, nr3, nr4, m, num, nrcomp, nrcic;
int r[dim], g[dim], viz[dim], t[dim], frst[dim];
vector<int> v[dim], g3, g4;
int rad(int x){
while(r[x] > 0){
x = r[x];
}
return x;
}
void upd(int nod){
if(g[nod] == 4){
nr3--;
nr4++;
g4.push_back(nod);
}
else if(g[nod] == 3){
nr3++;
g3.push_back(nod);
for(int i = 0; i < v[nod].size(); i++){
frst[ v[nod][i] ] = nod;
}
}
}
int verif(int nod){
if(nrcic > 1){
return 0;
}
if(nrcic == 1 && viz[nod] == 0){
return 0;
}
int i, n3 = 0;
if(g[nod] == 3){
n3++;
}
for(int i = 0; i < v[nod].size(); i++){
if(g[ v[nod][i] ] == 3){
n3++;
}
}
if(n3 != nr3){
return 0;
}
return 1;
}
void Init(int N) {
n = N;
nrcomp = n;
for(int i = 0; i < n; i++){
r[i] = -1;
}
}
static void dfs(int nod, int tt){
t[nod] = tt;
for(int i = 0; i < v[nod].size(); i++){
if(v[nod][i] != tt){
dfs(v[nod][i], nod);
}
}
}
void Link(int x, int y) {
int r1, r2, nod;
g[x]++;
g[y]++;
if(g[x] == 3){
frst[y] = x;
}
if(g[y] == 3){
frst[x] = y;
}
upd(x);
upd(y);
r1 = rad(x);
r2 = rad(y);
m++;
if(r1 != r2){
nrcomp--;
if(r[r1] < r[r2]){
r[r1] += r[r2];
r[r2] = r1;
}
else{
r[r2] += r[r1];
r[r1] = r2;
}
}
else{
nrcic++;
if(nrcic == 1){
t[x] = -1;
dfs(x, -1);
nod = y;
while(nod != -1){
viz[nod] = 1;
nod = t[nod];
}
}
}
v[x].push_back(y);
v[y].push_back(x);
}
int CountCritical() {
if(nr4 > 1){
return 0;
}
if(nr4 == 1){
return verif(g4[0]);
}
if(nr3 > 3){
return 0;
}
if(nr3 != 0){
int nr = 0;
for(int i = 0; i < nr3; i++){
nr += verif(g3[i]);
int nod = g3[i];
for(int j = 0; j < v[nod].size(); j++){
if(frst[ v[nod][j] ] == nod && g[ v[nod][j] ] < 3){
nr += verif(v[nod][j]);
}
}
}
return nr;
}
if(nrcic > 1){
return 0;
}
if(nrcic == 1){
return num;
}
return n;
}
Compilation message
rings.cpp: In function 'void upd(int)':
rings.cpp:22:26: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i = 0; i < v[nod].size(); i++){
~~^~~~~~~~~~~~~~~
rings.cpp: In function 'int verif(int)':
rings.cpp:38:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i = 0; i < v[nod].size(); i++){
~~^~~~~~~~~~~~~~~
rings.cpp:34:9: warning: unused variable 'i' [-Wunused-variable]
int i, n3 = 0;
^
rings.cpp: In function 'void dfs(int, int)':
rings.cpp:59:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i = 0; i < v[nod].size(); i++){
~~^~~~~~~~~~~~~~~
rings.cpp: In function 'int CountCritical()':
rings.cpp:122:30: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int j = 0; j < v[nod].size(); j++){
~~^~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
18 ms |
23808 KB |
Output is correct |
2 |
Correct |
20 ms |
24064 KB |
Output is correct |
3 |
Correct |
21 ms |
24064 KB |
Output is correct |
4 |
Incorrect |
19 ms |
23936 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
443 ms |
51260 KB |
Output is correct |
2 |
Correct |
858 ms |
66040 KB |
Output is correct |
3 |
Correct |
1063 ms |
78568 KB |
Output is correct |
4 |
Incorrect |
1048 ms |
79712 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
18 ms |
23808 KB |
Output is correct |
2 |
Correct |
20 ms |
24064 KB |
Output is correct |
3 |
Correct |
21 ms |
24064 KB |
Output is correct |
4 |
Incorrect |
19 ms |
23936 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
18 ms |
23808 KB |
Output is correct |
2 |
Correct |
20 ms |
24064 KB |
Output is correct |
3 |
Correct |
21 ms |
24064 KB |
Output is correct |
4 |
Incorrect |
19 ms |
23936 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
18 ms |
23808 KB |
Output is correct |
2 |
Correct |
20 ms |
24064 KB |
Output is correct |
3 |
Correct |
21 ms |
24064 KB |
Output is correct |
4 |
Incorrect |
19 ms |
23936 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |