Submission #44617

# Submission time Handle Problem Language Result Execution time Memory
44617 2018-04-03T22:07:12 Z MatheusLealV Question (Grader is different from the original contest) (CEOI14_question_grader) C++17
0 / 100
7 ms 920 KB
#include <bits/stdc++.h>
#define f first
#define s second
using namespace std;
typedef pair<int, int> pii;

int g = 0, Nmax = 0;

vector<int> v;

int encode (int n, int x, int y)
{
	v.clear();
	
 	for(int val = 1; val <= (1<<12); val ++)
	{
		int l = 0, r = 0;

		for(int bit = 0; bit < 12; bit ++)
		{
			if(val & (1<<bit))
			{
				if(bit < 6) l++;

				else r ++;
			}
		}

		if(l == r) v.push_back(val);
	}

    x = v[x], y = v[y];

    for(int bit = 0; bit < 12; bit ++)
    {
    	if( (x & (1<<bit)) && !(y & (1<<bit))) return bit;
    }
}
#include <bits/stdc++.h>
#define f first
#define s second
using namespace std;
typedef pair<int, int> pii;

int g = 0, Nmax = 0;

vector<int> v;

int decode (int n, int q, int h)
{
	v.clear();

	for(int val = 1; val <= (1<<12); val ++)
	{
		int l = 0, r = 0;

		for(int bit = 0; bit < 12; bit ++)
		{
			if(val & (1<<bit))
			{
				if(bit < 6) l++;

				else r ++;
			}
		}

		if(l == r) v.push_back(val);
	}

	int val = v[q];

    if(val & (1<<h)) return 1;

    return 0;
}

Compilation message

encoder.cpp: In function 'int encode(int, int, int)':
encoder.cpp:38:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^
# Verdict Execution time Memory Grader output
1 Incorrect 5 ms 836 KB Output isn't correct
2 Incorrect 7 ms 920 KB Output isn't correct