이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#ifndef EVAL
#include"grader.cpp"
#endif
#include<bits/stdc++.h>
using namespace std;
vector<int>g[1000005];
bool on[1000005],vis[1000005];
int n,deg[1000005];
int counter[5];
bool flag;
int cycle_size,cycle_number;
void update_counter(int x,int y){
counter[min(x,4)]+=y;
}
#define DEBUG(x) cout<<#x<<"="<<x<<"\n"
void go(int v,int p){
if(on[v])return;
cycle_size++;
vis[v]=1;
for(int to:g[v])if(to!=p){
if(vis[to]){
flag=true;
continue;
}
go(to,v);
}
}
bool check(){
for(int i=0;i<n;i++)vis[i]=0;
for(int i=0;i<n;i++){
if(on[i])continue;
if(deg[i]>2)return false;
if(vis[i])continue;
flag=false;
go(i,i);
if(flag)return false;
}
return true;
}
void Init(int N){
n=N;
counter[0]=n;
}
void Link(int x,int y){
g[x].push_back(y);
g[y].push_back(x);
update_counter(deg[x],-1);
update_counter(deg[y],-1);
deg[x]++;
deg[y]++;
update_counter(deg[x],+1);
update_counter(deg[y],+1);
}
int CountCritical(){
if(counter[4]){
if(counter[4]!=1)return 0;
for(int i=0;i<n;i++)
if(deg[i]>3){
on[i]=true;
for(int to:g[i])deg[i]--,deg[to]--;
int ans=check();
for(int to:g[i])deg[i]++,deg[to]++;
on[i]=false;
return ans;
}
}else if(counter[3]){
int ans=0;
for(int i=0;i<n;i++)
if(deg[i]>2){
on[i]=true;
for(int to:g[i])deg[i]--,deg[to]--;
ans+=check();
for(int to:g[i])deg[i]++,deg[to]++;
on[i]=false;
if(counter[3]==1)
for(int to:g[i]){
on[to]=true;
for(int to2:g[to])deg[to]--,deg[to2]--;
ans+=check();
for(int to2:g[to])deg[to]++,deg[to2]++;
on[to]=false;
}
}
return ans;
}else{
int cnt=0;
for(int i=0;i<n;i++){
on[i]=true;
for(int to:g[i])deg[i]--,deg[to]--;
cnt+=check();
for(int to:g[i])deg[i]++,deg[to]++;
on[i]=false;
}
return cnt;
}
}
/*
7 13
-1
1 2
-1
0 5
-1
2 0
-1
3 2
-1
3 5
-1
4 3
-1
*/
컴파일 시 표준 에러 (stderr) 메시지
rings.cpp: In function 'int CountCritical()':
rings.cpp:96:1: warning: control reaches end of non-void function [-Wreturn-type]
96 | }
| ^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |