이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#pragma GCC target("avx2,bmi,bmi2,popcnt,lzcnt")
using namespace std;
typedef long long ll;
#define ll int
typedef pair<int,int> pi;
typedef vector <int> vi;
typedef vector <pi> vpi;
typedef pair<pi, ll> pii;
typedef set <ll> si;
typedef long double ld;
#define f first
#define s second
#define mp make_pair
#define FOR(i,s,e) for(int i=s;i<=int(e);++i)
#define DEC(i,s,e) for(int i=s;i>=int(e);--i)
#define pb push_back
#define all(x) (x).begin(), (x).end()
#define lbd(x, y) lower_bound(all(x), y)
#define ubd(x, y) upper_bound(all(x), y)
#define aFOR(i,x) for (auto i: x)
#define mem(x,i) memset(x,i,sizeof x)
#define fast ios_base::sync_with_stdio(false),cin.tie(0),cout.tie(0)
#define maxn 1000010
#define INF (ll)1e9
#define MOD 1000000007
typedef pair <vi, int> pvi;
typedef pair <int,pi> ipi;
typedef vector <pii> vpii;
int N;
int d[maxn], maxD;
vi st[maxn], adj[maxn],cycles[6];
vpi all_edges;
int p[6][maxn], edges[6][maxn], sz[6][maxn], ncycles[6];
vi pos;
int fl(int i, int x){
if (p[i][x] == x) return x;
return p[i][x] = fl(i, p[i][x]);
}
void add(int i, int A, int B){
if (sz[fl(i,A)] > sz[fl(i,B)]) swap(A,B);
if (fl(i, A) != fl(i,B)){
int pA = fl(i,A), pB = fl(i,B);
if (edges[i][pA] >= sz[i][pA]) ncycles[i]--;
if (edges[i][pB] >= sz[i][pB]) ncycles[i]--;
sz[i][pB] += sz[i][pA];
edges[i][pB] += edges[i][pA];
p[i][pA] = pB;
}else if (edges[i][fl(i,A)] >= sz[i][fl(i,A)]) ncycles[i]--;
edges[i][fl(i,B)]++;
if (edges[i][fl(i,B)] >= sz[i][fl(i,B)]){
ncycles[i]++; cycles[i].pb(fl(i,B));
}
}
int bigx;
int gt3 = 0;
void Init(int N_) {
N = N_;
maxD = 0;
FOR(i,0,5) FOR(j,0,N-1) p[i][j] = j,sz[i][j] = 1;
bigx = -1;
}
void Link(int A, int B) {
if (d[A] == 3) gt3++;
if (d[B] == 3) gt3++;
d[A]++; d[B]++;
st[d[A]].pb(A); st[d[B]].pb(B);
adj[A].pb(B); adj[B].pb(A);
if (pos.empty() && (d[A] == 3 || d[B] == 3)){
if (d[A] == 3){
aFOR(i, adj[A]) pos.pb(i);
pos.pb(A);
}else if (d[B] == 3){
pos.pb(B); aFOR(i, adj[B]) pos.pb(i);
}
FOR(i,0,pos.size()-1){
aFOR(j, all_edges) if (j.f != pos[i] && j.s != pos[i]) add(i,j.f,j.s);
}
}
all_edges.pb(pi(A,B));
maxD = max({maxD, d[A], d[B]});
add(5,A,B);
FOR(i,0,(int)pos.size()-1) if (A != pos[i] && B != pos[i]) add(i,A,B);
}
int CountCritical() {
if (N == 1) return 1;
if (maxD >= 4){
if (gt3 > 1) return 0;
if (st[maxD].size() == 1){
int x = st[maxD][0];
bool no = 0;
if (find(all(pos),x) == pos.end()) return 0;
int idx = find(all(pos), x) - pos.begin();
if (!cycles[idx].empty()) return 0;
aFOR(i, st[3]) if (i != x && find(all(adj[i]), x) == adj[i].end()) return 0;
return 1;
}else return 0;
}else if (maxD <= 1) return N;
else if (maxD == 3){
if (st[3].size() > 4) return 0;
int ans = 0;
FOR(i,0,pos.size()-1){
bool no = 0;
aFOR(j, st[3]) if (pos[i] != j && find(all(adj[j]), pos[i]) == adj[j].end()){
no = 1; break;
}
if (no) continue;
if (cycles[i].empty()){
//cout << "! " << i << '\n';
ans++;
}
}
return ans;
}else{
if (ncycles[5] == 0) return N;
else if (ncycles[5] == 1) return sz[5][fl(5,cycles[5][0])];
else return 0;
}
}
컴파일 시 표준 에러 (stderr) 메시지
rings.cpp: In function 'int CountCritical()':
rings.cpp:99:18: warning: unused variable 'no' [-Wunused-variable]
99 | bool no = 0;
| ^~
# | 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... |