Submission #945515

# Submission time Handle Problem Language Result Execution time Memory
945515 2024-03-14T03:00:49 Z dugersuren Snake (CEOI08_snake) C++14
Compilation error
0 ms 0 KB
#include "snakelib.h"
#include<bits/stdc++.h>
using namespace std;
int k,l,r,minLen,maxLen,mid1,mid2;
char a1, a2;
int ask_snake(){
    k=get_speed();
    minLen=1;maxLen=12122;
    l=0;r=12122;    
    for(int i=1;i<=13;++i){
		mid1=l+(r-l)/3;
		mid2=r–(r-l)/3;
		ask_snake(mid1,mid2,&a1,&a2);
        if(a1=='f'){
        	if(a2=='f') maxLen=mid2-l,r=mid2+k-1;
        	if(a2=='s')minLen=mid2-mid1+2,maxLen=mid2-l,r=mid2+k;
        	if(a2=='b')minLen=mid2-mid1+3,r+=k;        	
		}
		if(a1=='s'){
			if(a2=='s'){
				return minLen=r-l+1;
			}
			l=mid1;
			if(a2=='f')maxLen=mid2-l,r=mid2+k-1;
			if(a2=='b')maxLen=r-mid1+1,r=mid2+k;
			
		}
		if(a1=='b'){
			l=mid1+1;
			if(a2=='f')maxLen=mid2-mid1-1,r=mid2+k-1;
        	if(a2=='s')maxLen=mid2-mid1,r=mid2+k,r=mid2+k;
        	if(a2=='b')minLen=r-mid1+1,r+=k;  
		}
    }
    int guess=(maxLen+minLen)/2;
    tell_length(guess);
}

Compilation message

snake.cpp:12:8: error: extended character – is not valid in an identifier
   12 |   mid2=r–(r-l)/3;
      |        ^
snake.cpp: In function 'int ask_snake()':
snake.cpp:12:8: error: 'r\U00002013' was not declared in this scope
   12 |   mid2=r–(r-l)/3;
      |        ^~
snake.cpp:36:16: warning: control reaches end of non-void function [-Wreturn-type]
   36 |     tell_length(guess);
      |     ~~~~~~~~~~~^~~~~~~