struct precalc
{
int p[924];
constexpr precalc() : p{}
{
int l = 0;
for (int i = 0; i < 1 << 12; ++i)
if (__builtin_popcount(i) == 6)
p[l++] = i;
}
};
constexpr precalc z;
int encode(int n, int x, int y) { return __builtin_ctz(z.p[x] ^ (z.p[x] & z.p[y])) + 1; }
struct precalc
{
int p[924];
constexpr precalc() : p{}
{
int l = 0;
for (int i = 0; i < 1 << 12; ++i)
if (__builtin_popcount(i) == 6)
p[l++] = i;
}
};
constexpr precalc z;
int decode(int n, int q, int h) { return z.p[q] & (1 << (h - 1)); }
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1717 ms |
24288 KB |
wrong answer |
2 |
Incorrect |
2070 ms |
24156 KB |
wrong answer |