Submission #680284

#TimeUsernameProblemLanguageResultExecution timeMemory
680284peijarICC (CEOI16_icc)C++17
100 / 100
118 ms612 KiB
#include "icc.h" #include <bits/stdc++.h> #define FOR(i, x, y) for (int i = x; i < y; i++) using namespace std; vector<int> a, b, cmp[101], graph[101]; bool visited[101]; void dfs(int node, int idx) { visited[node] = true; cmp[idx].push_back(node); for (int i : graph[node]) if (!visited[i]) dfs(i, idx); } void run (int n) { while (true) { int idx = 0; for (int i = 1; i <= n; i++) if (!visited[i]) dfs(i, idx++); for (int i = 0; ; i++) { // Check if the current split has a path between stuff a.clear(); b.clear(); FOR(j, 0, idx) { for (int k : cmp[j]) { if ((j >> i) & 1) a.push_back(k); else b.push_back(k); } } if (!query(a.size(), b.size(), a.data(), b.data())) continue; // Find the exact bits int exact = 0; FOR(k, 0, i) { a.clear(); b.clear(); FOR(j, 0, idx) { if ((j & ((1 << (k + 1)) - 1)) == exact) { for (int l : cmp[j]) { if ((j >> i) & 1) a.push_back(l); else b.push_back(l); } } } if (!query(a.size(), b.size(), a.data(), b.data())) exact |= (1 << k); } // Binary search in the component a.clear(); b.clear(); FOR(j, 0, idx) { if ((j & ((1 << i) - 1)) == exact) { for (int k : cmp[j]) { if ((j >> i) & 1) a.push_back(k); else b.push_back(k); } } } while (a.size() > 1) { if (query(a.size() / 2, b.size(), a.data(), b.data())) a.erase(a.begin() + a.size() / 2, a.end()); else a.erase(a.begin(), a.begin() + a.size() / 2); } while (b.size() > 1) { if (query(b.size() / 2, a.size(), b.data(), a.data())) b.erase(b.begin() + b.size() / 2, b.end()); else b.erase(b.begin(), b.begin() + b.size() / 2); } int u = a[0], v = b[0]; graph[u].push_back(v); graph[v].push_back(u); setRoad(u, v); break; } memset(visited, 0, sizeof(visited)); FOR(i, 0, idx) cmp[i].clear(); } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...