# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
113934 | Kastanda | cmp (balkan11_cmp) | C++11 | 2605 ms | 82600 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
#include "cmp.h"
using namespace std;
void remember(int a)
{
for (int i = 0; i < 4; i++)
bit_set(i * 8 + a % 8 + 1), a /= 8;
}
int compare(int b)
{
int r[4] = {0, 0, 0, 0};
for (int i = 0; i < 12; i++)
if ((b >> i) & 1)
r[i / 3] |= 1 << (i % 3);
for (int i = 3; ~ i; i--)
if (!bit_get(i * 8 + r[i] + 1))
{
if (r[i] < 4)
{
for (int j = 0; j < r[i]; j++)
if (bit_get(i * 8 + j + 1))
return 1;
return -1;
}
else
{
for (int j = r[i] + 1; j < 8; j++)
if (bit_get(i * 8 + j + 1))
return -1;
return 1;
}
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |