#include<bits/stdc++.h>
#include "Alicelib.h"
using namespace std;
#define st first
#define nd second
#define mp make_pair
using pii = pair<int, int>;
const int MAXN = 1020, MAXB = 10;
int deg[MAXN];
vector<pii> edge;
void Alice( int N, int M, int A[], int B[] ){
for(int i=0; i<M; ++i) {
A[i]++; B[i]++;
edge.push_back(mp(A[i], B[i]));
deg[A[i]]++;
deg[B[i]]++;
A[i]--;
B[i]--;
}
for(int i=1; i<=N; ++i) {
if(!deg[i]) continue;
for(int j=0; j<MAXB; ++j) {
if((1<<j)&i) {
edge.push_back(mp(i, N+1+j));
}
}
}
for(int i=0; i<MAXB; ++i) {
edge.push_back(mp(N+MAXB+1, N+i+1));
}
for(int i=0; i<MAXB/2; ++i) {
for(int j=MAXB-1; j>=MAXB-1-i; --j) {
edge.push_back(mp(N+i+1, N+j+1));
}
}
edge.push_back(mp(N+MAXB+2, N+MAXB+1));
InitG(N+MAXB+2, edge.size());
for(int i=0; i<(int)edge.size(); ++i) {
MakeG(i, edge[i].st-1, edge[i].nd-1);
//cerr<<edge[i].st<<' '<<edge[i].nd<<'\n';
}
}
#include "Boblib.h"
#include<bits/stdc++.h>
using namespace std;
#define st first
#define nd second
#define mp make_pair
using pii = pair<int, int>;
const int MAXN = 1020, MAXB = 10;
int N;
int root, bits[MAXN], first_bit, mid_bit, id[MAXN];
bool node[MAXN], is_bit[MAXN], sec_half[MAXN];
vector<int> g[MAXN], gb[MAXN];
vector<pii> edges;
void Bob( int V, int U, int C[], int D[] ){
N = V - (MAXB+2);
for(int i=0; i<U; ++i) {
g[C[i]].push_back(D[i]);
g[D[i]].push_back(C[i]);
}
for(int i=0; i<V; ++i) {
node[i] = 1;
if((int)g[i].size()==1) {
root = i;
node[i] = 0;
}
}
int spec = g[root][0];
node[spec] = 0;
for(int i: g[spec]) {
if(i == root) continue;
is_bit[i] = 1;
node[i] = 0;
}
for(int i=0; i<U; ++i) {
if(is_bit[C[i]] && is_bit[D[i]]) {
gb[C[i]].push_back(D[i]);
gb[D[i]].push_back(C[i]);
}
}
for(int i=0; i<V; ++i) {
if((int)gb[i].size()==1 && (int)g[i].size() >= N/2+2) {
first_bit = i;
}
}
for(int i=0; i<V; ++i) {
if((int)gb[i].size()==MAXB/2) {
bool ok = 1;
for(int j: gb[i]) {
if(j==first_bit) ok=0;
}
if(ok) mid_bit = i;
}
}
for(int i: gb[mid_bit]) {
sec_half[i] = 1;
}
for(int i=0; i<V; ++i) {
if(!is_bit[i]) continue;
int num = gb[i].size();
if(!sec_half[i]) {
bits[i] = num-1;
}
else {
bits[i] = MAXB/2+num-1;
}
}
for(int i=0; i<V; ++i) {
if(!node[i]) continue;
for(int j: g[i]) {
if(is_bit[j]) {
id[i] += (1<<bits[j]);
}
}
id[i]--;
}
for(int i=0; i<U; ++i) {
if(node[C[i]] && node[D[i]]) edges.push_back(mp(id[C[i]], id[D[i]]));
}
InitMap(V-(MAXB+2), edges.size());
for(auto i: edges) {
MakeMap(i.st, i.nd);
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
6 ms |
5044 KB |
Output is correct |
2 |
Correct |
5 ms |
4960 KB |
Output is correct |
3 |
Correct |
5 ms |
4760 KB |
Output is correct |
4 |
Correct |
6 ms |
5060 KB |
Output is correct |
5 |
Incorrect |
6 ms |
4832 KB |
Wrong Answer [120] |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
6 ms |
5044 KB |
Output is correct |
2 |
Correct |
5 ms |
4960 KB |
Output is correct |
3 |
Correct |
5 ms |
4760 KB |
Output is correct |
4 |
Correct |
6 ms |
5060 KB |
Output is correct |
5 |
Incorrect |
6 ms |
4832 KB |
Wrong Answer [120] |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
708 ms |
29848 KB |
Output is correct : V - N = 12 |
2 |
Correct |
564 ms |
26248 KB |
Output is correct : V - N = 12 |
3 |
Correct |
226 ms |
14280 KB |
Output is correct : V - N = 12 |
4 |
Correct |
14 ms |
5572 KB |
Output is correct : V - N = 12 |
5 |
Correct |
131 ms |
10180 KB |
Output is correct : V - N = 12 |
6 |
Correct |
519 ms |
24140 KB |
Output is correct : V - N = 12 |
7 |
Correct |
750 ms |
29440 KB |
Output is correct : V - N = 12 |
8 |
Correct |
684 ms |
27896 KB |
Output is correct : V - N = 12 |
9 |
Correct |
314 ms |
16276 KB |
Output is correct : V - N = 12 |
10 |
Correct |
36 ms |
6644 KB |
Output is correct : V - N = 12 |
11 |
Correct |
88 ms |
7736 KB |
Output is correct : V - N = 12 |
12 |
Correct |
378 ms |
18680 KB |
Output is correct : V - N = 12 |
13 |
Correct |
692 ms |
28596 KB |
Output is correct : V - N = 12 |
14 |
Correct |
612 ms |
28844 KB |
Output is correct : V - N = 12 |
15 |
Correct |
434 ms |
23308 KB |
Output is correct : V - N = 12 |
16 |
Correct |
93 ms |
8752 KB |
Output is correct : V - N = 12 |
17 |
Correct |
25 ms |
5980 KB |
Output is correct : V - N = 12 |
18 |
Correct |
267 ms |
15520 KB |
Output is correct : V - N = 12 |
19 |
Correct |
623 ms |
27104 KB |
Output is correct : V - N = 12 |
20 |
Correct |
777 ms |
29860 KB |
Output is correct : V - N = 12 |
21 |
Incorrect |
177 ms |
12536 KB |
Wrong Answer [120] |
22 |
Halted |
0 ms |
0 KB |
- |