#include "avoid.h"
#include <bits/stdc++.h>
using namespace std;
int ind[10][10];
int save[10];
int p[20];
int find(int a) {
return p[a]<0?a:p[a]=find(p[a]);
}
void merge(int a,int b) {
a=find(a);
b=find(b);
if (a==b) {
return;
}
p[b]=a;
}
std::pair<int, int> scout(int R, int H) {
vector<int> v[75];
for(int i=0;i<10;i++) {
for(int j=1;j<=1000;j++) {
if (j&(1<<i)) {
v[i].push_back(j);
}
else {
v[10+i].push_back(j);
}
}
}
int cnt=20;
for(int i=0;i<10;i++) {
for(int j=i+1;j<10;j++) {
for(int k=1;k<=1000;k++) {
if ((k&(1<<i))&&(k&(1<<j))) {
v[cnt].push_back(k);
}
}
ind[i][j]=cnt++;
}
}
for(int i=0;i<cnt;i++) {
send(v[i]);
}
vector<int> got=wait();
for(int i=0;i<10;i++) {
if (got[i]==0&&got[10+i]==0) {
save[i]=0;
}
else if (got[i]==1&&got[10+i]==1) {
save[i]=1;
}
else {
save[i]=-1;
}
}
for(int i=0;i<10;i++) {
for(int j=i+1;j<10;j++) {
if (save[i]==-1&&save[j]==-1) {
if (got[ind[i][j]]==1) {
merge(i,j);
merge(10+i,10+j);
}
else {
merge(i,10+j);
merge(10+i,j);
}
}
}
}
int one=0;
int two=0;
int st=-1;
for(int i=9;i>=0;i--) {
if (save[i]==-1) {
st=i;
}
else {
one+=(save[i]<<i);
two+=(save[i]<<i);
}
}
two+=(1<<st);
for(int i=0;i<10;i++) {
if (save[i]==-1&&i!=st) {
if (find(i)==find(st)) {
two+=(1<<i);
}
else {
one+=(1<<i);
}
}
}
return pair<int,int>(one,two);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
271 ms |
524288 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Not correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Not correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Not correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
263 ms |
524288 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |