이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
map<long long,long long> sumas;
vector<vector<int>> V;
long long con1=0;
int n;
bool caca=false;
void Init(int N){
n=N;
vector<int> V1(N,0);
for(int i=0;i<N;i++){
V.push_back(V1);
}
}
void Link(int A,int B){
caca=true;
V[A][B]=1;
V[B][A]=1;
sumas[A]++;
sumas[B]++;
}
int CountCritical(){
if(caca){
long long res=0;
for(int i=0;i<n;i++){
bool com=true;
long long con=0;
long long solitos=0;
for(int j=0;j<n;j++){
if(i!=j){
if(V[i][j]==1){
sumas[j]--;
}
if(sumas[j]>2){
com=false;
break;
}
if(sumas[j]==0){
solitos++;
if(V[i][j]==1){
sumas[j]++;
}
continue;
}
if(sumas[j]==1){
con++;
}
if(V[i][j]==1){
sumas[j]++;
}
}
}
if(solitos!=n-1){
if(con%2!=0 || con==0){
com=false;
}
}
if(com){
res++;
}
}
return res;
}else{
return n;
}
}
# | 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... |