# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1006183 | HishamAlshehri | Data Transfer (IOI19_transfer) | C++17 | 6 ms | 5640 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>
using namespace std;
vector<int> get_attachment(vector<int> source) {
int x = 0, cnt = 0;
for (int i = 0; i < source.size(); i++)
{
if (source[i])
{
x ^= (i + 1);
cnt++;
}
}
vector<int>ans = source;
while (x)
{
ans.push_back(x % 2);
x /= 2;
}
ans.push_back(cnt % 2);
return ans;
}
vector<int> retrieve(vector<int> data) {
int x1 = 0, k = data[data.size() - 1], cnt = 0;
int n = (data.size() > 255 ? 255 : 63);
for (int i = 0; i < n; i++)
{
if (data[i])
{
cnt++;
x1 ^= (i + 1);
}
}
int x2 = 0;
for (int i = n; i < data.size() - 1; i++)
{
x2 += data[i] * (1 << (i - n + 1));
}
if (x1 != x2 && cnt % 2 != k)
data[x2 ^ x1] ^= 1;
return vector<int>(data.begin(), data.begin() + n);
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |