답안 #120461

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
120461 2019-06-24T15:28:24 Z nvmdava 낙하산 고리들 (IOI12_rings) C++17
0 / 100
800 ms 88804 KB
#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){
      t.clear();
      if(merge(A, B, 1)) v[1] = -1;
      if(merge(A, B, 2)) v[2] = -1;
      if(pos.count(v[1])) t.insert(v[1]);
      if(pos.count(v[2])) t.insert(v[2]);
      swap(t ,pos);
      t.clear();
      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();
}

Compilation message

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++)
    ^~~
# 결과 실행 시간 메모리 Grader output
1 Correct 21 ms 23760 KB Output is correct
2 Incorrect 23 ms 24296 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 627 ms 74864 KB Output is correct
2 Incorrect 800 ms 88804 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 21 ms 23760 KB Output is correct
2 Incorrect 23 ms 24296 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 21 ms 23760 KB Output is correct
2 Incorrect 23 ms 24296 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 21 ms 23760 KB Output is correct
2 Incorrect 23 ms 24296 KB Output isn't correct
3 Halted 0 ms 0 KB -