Diff
Not logged in

Differences From Artifact [de7a471045510ac0]:

To Artifact [89ef01bfcc63d3cd]:


253 int y = robot.y; 253 int y = robot.y; 254 int x = robot.x; 254 int x = robot.x; 255 assert( this[robot] == 'R' ); 255 assert( this[robot] == 'R' ); 256 int lambda = 0; 256 int lambda = 0; 257 bool dead = false; 257 bool dead = false; 258 if( '\\' == this[y+dy,x+dx] ) 258 if( '\\' == this[y+dy,x+dx] ) 259 lambda++; 259 lambda++; > 260 if( '!' == this[y+dy,x+dx] ) > 261 razor++; 260 if( " \\.O".count(this[y+dy,x+dx])==1 ) { | 262 if( " \\!.O".count(this[y+dy,x+dx])==1 ) { 261 this[y,x]=' '; 263 this[y,x]=' '; 262 this[y+dy,x+dx]='R'; 264 this[y+dy,x+dx]='R'; 263 robot = new Pos(y+dy,x+dx); 265 robot = new Pos(y+dy,x+dx); 264 } else if(dy==0 && '*'==this[y+dy,x+dx] && ' '==this[y+dy*2,x+dx 266 } else if(dy==0 && '*'==this[y+dy,x+dx] && ' '==this[y+dy*2,x+dx 265 this[y,x]=' '; 267 this[y,x]=' '; 266 this[y+dy,x+dx]='R'; 268 this[y+dy,x+dx]='R'; 267 this[y+dy*2,x+dx*2]='*'; 269 this[y+dy*2,x+dx*2]='*';