Submission #1032127

# Submission time Handle Problem Language Result Execution time Memory
1032127 2024-07-23T12:18:41 Z amine_aroua cmp (balkan11_cmp) C++17
0 / 100
511 ms 90240 KB
#include "cmp.h"
#include<bits/stdc++.h>
using namespace std;
vector<int> delta = {1 , 10 , 50 , 250 , 400 , 600};
int pow4(int n , int i )
{
    return (n >> (2 * i));
}
void remember(int n) {
    for(int i = 0 ; i < 6 ; i++)
    {
        bit_set(pow4(n , i)+delta[i]);
    }
}

int compare(int b) 
{
    int lo = 0 , hi = 6;
    while(lo + 1 < hi)
    {
        int mid = (lo + hi)/2;
        if(bit_get(delta[mid - 1] + pow4(b , mid - 1)))
            hi = mid;
        else
            lo = mid;
    }
    hi--;
    if(hi == 0)
    {
        return 0;
    }
    int nb = 4 * pow4(b , hi);
    int bit = pow4(b , hi - 1) - nb;
    for(int i = 0 ; i < 4 ; i++)
    {
        if(i == bit)
            continue;
        if(1 + bit_get(delta[hi - 1] + nb + i))
        {
            if(i < bit)
            {
                return 1;
            }
            else
                return -1;
        }
    }
}

Compilation message

cmp.cpp: In function 'int compare(int)':
cmp.cpp:48:1: warning: control reaches end of non-void function [-Wreturn-type]
   48 | }
      | ^
# Verdict Execution time Memory Grader output
1 Incorrect 511 ms 90240 KB ZERO POINTS: For a=3040 and b=3318, correct answer is 1, got -1