이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ff first
#define ss second
using namespace std;
vector<pair<int, int> > con;
vector<int> adj[1000005];
set<int> pos, t;
int N;
int p[1000005][3];
void Init(int N_) {
N = N_;
for(int i = 0; i < N; i++)
for(int j = 0; j < 3; j++)
p[i][j] = i;
for(int i = 0; i < N; i++)
pos.insert(i);
}
int put = 0;
int v[3];
int find(int v, int i){
if(v == p[v][i]) return v;
return p[v][i] = find(p[v][i], i);
}
bool merge(int v, int u, int i){
if(i){
if(v == ::v[i]) return 0;
if(u == ::v[i]) return 0;
}
v = find(v, i);
u = find(u, i);
if(v == u) return 1;
p[v][i] = u;
return 0;
}
bool dfs(int A, int B){
t.insert(A);
for(int x : adj[A]){
if(x == B) continue;
if(t.count(x)) return 1;
if(dfs(x, A)) return 1;
}
t.erase(A);
return 0;
}
void Link(int A, int B){
if(pos.empty()) return;
adj[A].push_back(B);
adj[B].push_back(A);
t.clear();
if(adj[A].size() == 4){
if(pos.count(A))
t.insert(A);
swap(t, pos);
t.clear();
} else if(adj[A].size() == 3){
if(pos.count(A))
t.insert(A);
for(int x : adj[A])
if(pos.count(x))
t.insert(x);
swap(t, pos);
t.clear();
}
if(adj[B].size() == 4){
if(pos.count(B))
t.insert(B);
swap(t, pos);
t.clear();
} else if(adj[B].size() == 3){
if(pos.count(B))
t.insert(B);
for(int x : adj[B])
if(pos.count(x))
t.insert(x);
swap(t, pos);
t.clear();
}
if(put == 0 && pos.size() <= 2){
for(int x : pos){
v[put++] = x;
}
for(auto x : con){
if(merge(x.ff, x.ss, 1)) v[1] = -1;
if(merge(x.ff, x.ss, 2)) v[2] = -1;
}
}
con.push_back({A, B});
if(put){
if(merge(A, B, 1)) v[1] = -1;
if(merge(A, B, 2)) v[2] = -1;
pos.clear();
if(v[1] > -1) pos.insert(v[1]);
if(v[2] > -1) pos.insert(v[2]);
return;
}
if(pos.empty()) return;
if(merge(A, B, 0) == 0 || put) return;
dfs(A, B);
set<int> lol;
for(int x : t)
if(pos.count(x))
lol.insert(x);
swap(lol, pos);
t.clear();
}
int CountCritical() {
return pos.size();
}
컴파일 시 표준 에러 (stderr) 메시지
rings.cpp: In function 'void Init(int)':
rings.cpp:13:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i = 0; i < N; i++)
^~~
rings.cpp:16:4: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for(int i = 0; i < N; i++)
^~~
# | 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... |