Submission #96267

#TimeUsernameProblemLanguageResultExecution timeMemory
96267popovicirobertICC (CEOI16_icc)C++14
61 / 100
155 ms636 KiB
#include <bits/stdc++.h> #include "icc.h" using namespace std; struct DSU { vector <int> par; stack <int> stk; int n; inline void init(int _n) { n = _n; par.resize(n + 1); } int root(int x) { if(par[x] == 0) return x; return par[x] = root(par[x]); } inline void join(int x, int y) { x = root(x), y = root(y); if(x != y) { stk.push(x); par[x] = y; } else { stk.push(-1); } } inline void undo() { if(stk.top() != -1) { par[stk.top()] = 0; } stk.pop(); } }; const int MAXN = 100; int A[MAXN + 1], B[MAXN + 1]; int a[MAXN + 1], b[MAXN + 1]; inline void add(int *arr, int &sz, vector <int> &cur) { for(auto it : cur) { arr[sz++] = it; } } void run(int n) { int i; DSU dsu; dsu.init(n); for(int tt = 1; tt < n; tt++) { vector < vector <int> > comp(n + 1); vector <int> vis(n + 1, 0); int sz = 0; for(i = 1; i <= n; i++) { int x = dsu.root(i); if(!vis[x]) { vis[x] = ++sz; } comp[vis[x] - 1].push_back(i); } pair <int, int> cur; int bit; int sza, szb; int sz1, sz0; for(bit = 0; (1 << bit) < sz; bit++) { sza = szb = 0; sz1 = sz0 = 0; for(i = 0; i < sz; i++) { if(i & (1 << bit)) { add(a, sza, comp[i]); sz1++; } else { add(b, szb, comp[i]); sz0++; } } if((1 << (bit + 1)) >= sz) { break; } if(query(sza, szb, a, b)) { break; } } int res = 0; for(int step = 1 << 6; step; step >>= 1) { if(res + step < sz1) { int cnt = res + step, sz = 0; i = 0; while(cnt > 0) { if(i & (1 << bit)) { cnt--; add(A, sz, comp[i]); } i++; } if(!query(sz, szb, A, b)) { res += step; } } } int cnt = res + 1; for(i = 0; i < sz; i++) { if(i & (1 << bit)) { cnt--; if(cnt == 0) { cur.first = i; break; } } } res = 0; for(int step = 1 << 6; step; step >>= 1) { if(res + step < sz0) { int cnt = res + step, sz = 0; i = 0; while(cnt > 0) { if((i & (1 << bit)) == 0) { cnt--; add(B, sz, comp[i]); } i++; } if(!query(sza, sz, a, B)) { res += step; } } } cnt = res + 1; for(i = 0; i < sz; i++) { if((i & (1 << bit)) == 0) { cnt--; if(cnt == 0) { cur.second = i; break; } } } pair <int, int> edge; res = -1; sza = 0; add(a, sza, comp[cur.first]); for(int step = 1 << 6; step; step >>= 1) { if(res + step + 1 < comp[cur.second].size()) { int sz = 0; for(i = 0; i <= res + step; i++) { B[sz++] = comp[cur.second][i]; } if(!query(sza, sz, a, B)) { res += step; } } } edge.first = comp[cur.second][res + 1]; res = -1; szb = 0; add(b, szb, comp[cur.second]); for(int step = 1 << 6; step; step >>= 1) { if(res + step + 1 < comp[cur.first].size()) { int sz = 0; for(i = 0; i <= res + step; i++) { A[sz++] = comp[cur.first][i]; } if(!query(sz, szb, A, b)) { res += step; } } } edge.second = comp[cur.first][res + 1]; dsu.join(edge.first, edge.second); setRoad(edge.first, edge.second); } }

Compilation message (stderr)

icc.cpp: In function 'void run(int)':
icc.cpp:151:31: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
             if(res + step + 1 < comp[cur.second].size()) {
                ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
icc.cpp:167:31: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
             if(res + step + 1 < comp[cur.first].size()) {
                ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
icc.cpp:102:26: warning: 'szb' may be used uninitialized in this function [-Wmaybe-uninitialized]
                 if(!query(sz, szb, A, b)) {
                     ~~~~~^~~~~~~~~~~~~~~
icc.cpp:130:26: warning: 'sza' may be used uninitialized in this function [-Wmaybe-uninitialized]
                 if(!query(sza, sz, a, B)) {
                     ~~~~~^~~~~~~~~~~~~~~
icc.cpp:120:13: warning: 'sz0' may be used uninitialized in this function [-Wmaybe-uninitialized]
             if(res + step < sz0) {
             ^~
icc.cpp:92:13: warning: 'sz1' may be used uninitialized in this function [-Wmaybe-uninitialized]
             if(res + step < sz1) {
             ^~
#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...