Submission #973161

# Submission time Handle Problem Language Result Execution time Memory
973161 2024-05-01T14:54:32 Z sleepntsheep Question (Grader is different from the original contest) (CEOI14_question_grader) C
0 / 100
7000 ms 9736 KB
#include <stdio.h>

int set[925], iota;

void init()
{    
    for (int iota = 0, i = 1; i < (1<<12); ++i)
        if(__builtin_popcount(i) == 6)
            set[++iota] = i;
}

int encode(int n,int x,int y)
{
    if (!iota) init();
    for(int i=0;i<12;++i)
        if((set[x]&(1<<i))&&!(set[y]&(1<<i)))
            return i+1;
    return- 1;
}

int decode (int n, int q, int h)
{
    if (!iota) init();
    return(set[q]&(1<<(h-1)));
}

#include <stdio.h>

int set[925], iota;

void init()
{    
    for (int iota = 0, i = 1; i < (1<<12); ++i)
        if(__builtin_popcount(i) == 6)
            set[++iota] = i;
}

int encode(int n,int x,int y)
{
    if (!iota) init();
    for(int i=0;i<12;++i)
        if((set[x]&(1<<i))&&!(set[y]&(1<<i)))
            return i+1;
    return- 1;
}

int decode (int n, int q, int h)
{
    if (!iota) init();
    return(set[q]&(1<<(h-1)));
}

# Verdict Execution time Memory Grader output
1 Execution timed out 7063 ms 9736 KB Time limit exceeded
2 Execution timed out 7033 ms 9736 KB Time limit exceeded