Posted: Sun Oct 31, 2010 11:42 am
If this was a warmup round, I wouldn't have known how to do the "real" challenge afterwards. It was already a pain to decode this one, I couldn't imagine doing this again with even more bits ;)
Code: Select all
private static int centerEval(double x, double y, boolean markIt) {
int res=100;
for(int lx=(int) Math.round(x-radius-1);lx<=(int) Math.round(x+radius+1);lx++) {
for(int ly=(int) Math.round(y-radius-1);ly<=(int) Math.round(y+radius+1);ly++) {
if ((lx-x)*(lx-x)+(ly-y)*(ly-y)<(lx-prevX)*(lx-prevX)+(ly-prevY)*(ly-prevY)) {
if (Math.abs((lx-x)*(lx-x)+(ly-y)*(ly-y)-radius*radius)<1.2*radius) {
int pixel=spBits.getRGB(lx,ly);
if ((pixel&0xff)==0xff) {
res+=4;
if (markIt) {
spBits.setRGB(lx,ly,((progress*0x3800)&0xff00)|0x0080);
}
}
if ((pixel&0xff)==0x00) {
res--;
}
}
}
}
}
//System.out.printf(Double.toString(x)+" "+Double.toString(y)+" "+res+"\n");
return res;
}
private static void correctCenter() {
int bestEval=0,bestX=0,bestY=0;
for(int x=-4;x<=4;x++) {
for(int y=-4;y<=4;y++) {
if (Math.abs((x+dX)*(x+dX)+(y+dY)*(y+dY)-9)<8) {
int eval=centerEval(curX+x,curY+y,false);
System.out.printf(eval+"\n");
if (eval>bestEval) {
bestX=x;bestY=y;bestEval=eval;
}
}
}
}
curX=curX+bestX;curY=curY+bestY;centerEval(curX,curY,true);
for(int x=curX-1;x<=curX+1;x++) {
for(int y=curY-1;y<=curY+1;y++) {
if ((curX-x)*(curX-x)+(curY-y)*(curY-y)<=1) {
spBits.setRGB(x,y,((progress*0x3800)&0xff00)|0x0080);
}
}
}
}
private static String processSpBits() {
for(int x=0;x<spBits.getWidth();x++) {
for(int y=0;y<spBits.getHeight();y++) {
int pixel = spBits.getRGB(x,y);int R=(pixel>>16)&0xff, G=(pixel>>8)&0xff, B=pixel&0xff;
if ((pixel&0xffffff)==0) {spBits.setRGB(x,y,0xff000000);
} else if ((R>35) && (G>182) && (B>153)) {
spBits.setRGB(x,y,0xffff0000);
} else if (R<36 & B>100) {
spBits.setRGB(x,y,0xff00ff00);
} else {
spBits.setRGB(x,y,0xff0000ff);
}
}
}
correctCenter();
String result = "1";
while (true) {
progress++;
//System.out.println(curX+" "+curY);
prevX=curX;prevY=curY;
curX+=dX;curY+=dY;
correctCenter();
dX=curX-prevX;dY=curY-prevY;
double norm=Math.sqrt(dX*dX+dY*dY);
System.out.print(norm+"\n");
dX=(int) Math.round(3*dX/norm);dY=(int) Math.round(3*dY/norm);
int zeroVote=0,oneVote=0;
for(int x=curX-radius+1;x<=curX+radius-1;x++) {
for(int y=curY-radius+1;y<=curY+radius-1;y++) {
if ((x-curX)*(x-curX)+(y-curY)*(y-curY)<(radius-1)*(radius-1)) {
if ((x-prevX)*(x-prevX)+(y-prevY)*(y-prevY)>(radius*radius)) {
int pixel=spBits.getRGB(x,y);
if ((pixel&0xffffff)==0xff0000) {
zeroVote++;
} else if ((pixel&0xffffff)==0x00ff00) {
oneVote++;
}
}
}
}
}
if (zeroVote>0 && oneVote>0) {
System.out.printf("Not sure with "+progress+" "+zeroVote+" "+oneVote+"\n");
result=result+"2";
break;
} else if (zeroVote>0) {
result="1"+result;
} else if (oneVote>0) {
result="0"+result;
} else {
//result=result+"E";
break;
}
if ((curX<10)||(curX>1014)||(curY<10)||(curY>1014)) {
break;
}
}
//processedCircle(curX,curY);
return result;
}