#include "Joi.h"
#include "bits/stdc++.h"
using namespace std;
#define fi first
#define se second
#define ll long long
#define dbg(v) cerr<<#v<<" = "<<v<<'\n'
#define vi vector<int>
#define vl vector <ll>
#define pii pair<int,int>
#define mp make_pair
#define db long double
#define pb push_back
#define all(s) s.begin(),s.end()
template<class T> ostream& operator<<(ostream& stream, const vector<T> v){ stream << "[ "; for (int i=0; i<(int)v.size(); i++) stream << v[i] << " "; stream << "]"; return stream;}
template < class T > T smin(T &a,T b) {if (a > b) a = b;return a;}
template < class T > T smax(T &a,T b) {if (a < b) a = b;return a;}
const int N = 1e6 + 5;
const int C = 60;
static vi g[N];
static set < int > G[N];
static int color[N];
static int f[N];
static int deg[N];
static int get(int k) {
return k == f[k] ? k : f[k] = get(f[k]);
}
static int n;
static void dfs(int node,int prev,set < int > nodes,set < pii > degs) {
set < int > col;
for (auto it : nodes)
col.insert(color[it]);
assert(col.size() == C);
for (auto it : g[node])
if (it != prev) {
if (nodes.count(it))
dfs(it,node,nodes,degs);
else {
set < int > new_nodes;
set < pii > new_degs;
for (auto w : nodes)
new_nodes.insert(w);
int u,v;
auto low = degs.begin();
if (low->se == node)
++low;
u = low->se;
for (auto w : nodes)
if (G[u].count(w)) {
v = w;
break;
}
new_nodes.erase(u);
new_nodes.insert(it);
color[it] = color[u];
--deg[u];
--deg[v];
++deg[node];
++deg[it];
for (auto it : new_nodes)
new_degs.insert(mp(deg[it],it));
dfs(it,node,new_nodes,new_degs);
++deg[u];
++deg[v];
--deg[node];
--deg[it];
}
}
}
void Joi(int N, int M, int A[], int B[], long long X, int T) {
n = N;
for (int i = 0;i < n;++i)
f[i] = i,color[i] = -1;
for (int i = 0;i < M;++i) {
if (get(A[i]) == get(B[i]))
continue;
g[A[i]].pb(B[i]);
g[B[i]].pb(A[i]);
G[A[i]].insert(B[i]);
G[B[i]].insert(A[i]);
f[get(A[i])] = get(B[i]);
}
set < int > nodes;
set < pii > degs;
queue < int > Q;
int TT = -1;
Q.push(0);
while (!Q.empty()) {
int node = Q.front();
Q.pop();
nodes.insert(node);
if (nodes.size() == C)
break;
color[node] = ++TT;
for (auto it : g[node])
if (!nodes.count(it)) {
Q.push(it);
}
}
for (auto u : nodes)
for (auto v : g[u])
if (nodes.count(v) && u < v)
++deg[u],++deg[v];
for (auto it : nodes)
degs.insert(mp(deg[it],it));
dfs(0,-1,nodes,degs);
for (int i = 0;i < n;++i)
MessageBoard(i,(X >> color[i]) & 1);
}
#include "Ioi.h"
#include "bits/stdc++.h"
using namespace std;
#define fi first
#define se second
#define ll long long
#define dbg(v) cerr<<#v<<" = "<<v<<'\n'
#define vi vector<int>
#define vl vector <ll>
#define pii pair<int,int>
#define mp make_pair
#define db long double
#define pb push_back
#define all(s) s.begin(),s.end()
template<class T> ostream& operator<<(ostream& stream, const vector<T> v){ stream << "[ "; for (int i=0; i<(int)v.size(); i++) stream << v[i] << " "; stream << "]"; return stream;}
template < class T > T smin(T &a,T b) {if (a > b) a = b;return a;}
template < class T > T smax(T &a,T b) {if (a < b) a = b;return a;}
const int N = 1e6 + 5;
const int C = 60;
static vi g[N];
static set < int > G[N];
static int color[N];
static int f[N];
static int deg[N];
static int get(int k) {
return k == f[k] ? k : f[k] = get(f[k]);
}
static int POS;
static int n;
static int was[N];
static void dfs(int node,int prev,set < int > nodes,set < pii > degs) {
if (node == POS) {
for (auto it : nodes)
was[it] = 1;
}
for (auto it : g[node])
if (it != prev) {
if (nodes.count(it))
dfs(it,node,nodes,degs);
else {
set < int > new_nodes;
set < pii > new_degs;
for (auto w : nodes)
new_nodes.insert(w);
int u,v;
auto low = degs.begin();
if (low->se == node)
++low;
u = low->se;
for (auto w : nodes)
if (G[u].count(w)) {
v = w;
break;
}
new_nodes.erase(u);
new_nodes.insert(it);
color[it] = color[u];
--deg[u];
--deg[v];
++deg[node];
++deg[it];
for (auto it : new_nodes)
new_degs.insert(mp(deg[it],it));
dfs(it,node,new_nodes,new_degs);
++deg[u];
++deg[v];
--deg[node];
--deg[it];
}
}
}
static ll answer = 0;
void DFS(int node,int prev) {
if (node != POS) {
answer += (1ll << color[node]) * Move(node);
}
for (auto it : g[node])
if (it != prev && was[it]) {
DFS(it,node);
Move(node);
}
}
long long Ioi(int N, int M, int A[], int B[], int P, int V, int T) {
n = N;
for (int i = 0;i < n;++i)
f[i] = i,color[i] = -1;
for (int i = 0;i < M;++i) {
if (get(A[i]) == get(B[i]))
continue;
g[A[i]].pb(B[i]);
g[B[i]].pb(A[i]);
G[A[i]].insert(B[i]);
G[B[i]].insert(A[i]);
f[get(A[i])] = get(B[i]);
}
set < int > nodes;
set < pii > degs;
queue < int > Q;
int TT = -1;
Q.push(0);
while (!Q.empty()) {
int node = Q.front();
Q.pop();
nodes.insert(node);
if (nodes.size() == C)
break;
color[node] = ++TT;
for (auto it : g[node])
if (!nodes.count(it)) {
Q.push(it);
}
}
POS = P;
for (auto u : nodes)
for (auto v : g[u])
if (nodes.count(v) && u < v)
++deg[u],++deg[v];
for (auto it : nodes)
degs.insert(mp(deg[it],it));
dfs(0,-1,nodes,degs);
POS = P;
DFS(P,-1);
answer += (1ll << color[P]) * V;
return answer;
}
Compilation message
Joi.cpp: In function 'void dfs(int, int, std::set<int>, std::set<std::pair<int, int> >)':
Joi.cpp:73:17: warning: 'v' may be used uninitialized in this function [-Wmaybe-uninitialized]
++deg[v];
^~~~~~~~
Ioi.cpp: In function 'void dfs(int, int, std::set<int>, std::set<std::pair<int, int> >)':
Ioi.cpp:77:17: warning: 'v' may be used uninitialized in this function [-Wmaybe-uninitialized]
++deg[v];
^~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
138 ms |
141928 KB |
Wrong Answer [7] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
698 ms |
149712 KB |
Wrong Answer [7] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
161 ms |
149712 KB |
Wrong Answer [7] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
641 ms |
150064 KB |
Output is correct |
2 |
Incorrect |
592 ms |
151288 KB |
Wrong Answer [7] |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
655 ms |
152080 KB |
Wrong Answer [7] |
2 |
Halted |
0 ms |
0 KB |
- |