Submission #201710

# Submission time Handle Problem Language Result Execution time Memory
201710 2020-02-11T19:44:28 Z stefdasca Snake (CEOI08_snake) C++14
0 / 100
6 ms 408 KB
#include "snakelib.h"
#include<bits/stdc++.h>
using namespace std;
int k;
char x, y;
void casework(int &st, int &dr, int mid1, int mid2)
{
    if(x == 's' && y == 'f')
    {
        st = (st + mid1) / 2 - k;
        dr = mid2 + k;
    }
    if(x == 'b' && y == 'b')
        st = mid1;
    if(x == 'f' && y == 'f')
        dr = mid1 + k;
    if(x == 'b' && y == 'f')
    {
        st = mid1;
        dr = mid2 + k;
    }
    if(x == 'b' && y == 's')
    {
        st = mid1;
        dr = (dr + mid2) / 2 + k;
    }
}
int main()
{
    k = get_speed();
    int st = 0;
    int dr = 12121;
    int qu = 42;
    while(qu)
    {
        int mid1 = st + (dr - st) / 3;
        int mid2 = dr - (dr - st) / 3;
        ask_snake(mid1, mid2, &x, &y);
        --qu;
        if(x == 's' && y == 's')
        {
            while(qu && x == 's' && y == 's')
            {
                mid1 = (st + mid1 - k) / 2;
                mid2 = (dr + mid2 + k) / 2;
                ask_snake(mid1, mid2, &x, &y);
                --qu;
            }
            casework(st, dr, mid1, mid2);
        }
        else
            casework(st, dr, mid1, mid2);
    }
    tell_length(dr - st + 1);
}
# Verdict Execution time Memory Grader output
1 Incorrect 5 ms 376 KB too many calls of ask_snake
2 Incorrect 5 ms 380 KB too many calls of ask_snake
3 Incorrect 5 ms 248 KB too many calls of ask_snake
4 Incorrect 5 ms 248 KB too many calls of ask_snake
5 Incorrect 5 ms 376 KB too many calls of ask_snake
6 Incorrect 5 ms 376 KB too many calls of ask_snake
7 Incorrect 5 ms 248 KB too many calls of ask_snake
8 Incorrect 5 ms 248 KB too many calls of ask_snake
9 Incorrect 5 ms 248 KB too many calls of ask_snake
10 Incorrect 5 ms 248 KB too many calls of ask_snake
11 Incorrect 5 ms 248 KB too many calls of ask_snake
12 Incorrect 6 ms 376 KB too many calls of ask_snake
13 Incorrect 6 ms 248 KB too many calls of ask_snake
14 Incorrect 5 ms 380 KB too many calls of ask_snake
15 Incorrect 5 ms 248 KB too many calls of ask_snake
16 Incorrect 5 ms 248 KB too many calls of ask_snake
17 Incorrect 5 ms 248 KB too many calls of ask_snake
18 Incorrect 5 ms 408 KB too many calls of ask_snake
19 Incorrect 5 ms 376 KB too many calls of ask_snake
20 Incorrect 5 ms 376 KB too many calls of ask_snake