Submission #1006186

# Submission time Handle Problem Language Result Execution time Memory
1006186 2024-06-23T14:06:58 Z HishamAlshehri Data Transfer (IOI19_transfer) C++17
0 / 100
5 ms 5652 KB
#include <bits/stdc++.h>
using namespace std;

vector<int> get_attachment(vector<int> source) {
	int x = 0, cnt = 0;
	for (int i = 1; i <= source.size(); i++)
	{
		if (source[i - 1])
		{
			x ^= i;
			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 = 1; i <= n; i++)
	{
		if (data[i - 1])
		{
			cnt++;
			x1 ^= i;
		}
	}
	int x2 = 0;
	for (int i = n + 1; i <= data.size() - 1; i++)
	{
		x2 += data[i - 1] * (1 << (i - n));		
	}
	if (x1 != x2 && cnt % 2 != k)
		data[(x2 ^ x1) - 1] ^= 1;
	return vector<int>(data.begin(), data.begin() + n);
}

Compilation message

transfer.cpp: In function 'std::vector<int> get_attachment(std::vector<int>)':
transfer.cpp:6:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
    6 |  for (int i = 1; i <= source.size(); i++)
      |                  ~~^~~~~~~~~~~~~~~~
transfer.cpp: In function 'std::vector<int> retrieve(std::vector<int>)':
transfer.cpp:36:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   36 |  for (int i = n + 1; i <= data.size() - 1; i++)
      |                      ~~^~~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 1304 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 5 ms 5652 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -