Submission #559041

#TimeUsernameProblemLanguageResultExecution timeMemory
559041_karan_gandhiCoins (IOI17_coins)C++17
Compilation error
0 ms0 KiB
#include "coins.h"

std::vector<int> coin_flips(std::vector<int> b, int c) {
	std::vector<int> filps(1);
	int xr = c;
	for (int i = 0; i < b.size(); i++) {
		xr ^= b[i] * i;
	}
	flips[0] = xr;
	return flips;
}

int find_coin(std::vector<int> b) {
	int xr = 0;
	for (int i = 0; i < b.size(); i++) {
		xr ^= b[i] * i;
	}
	return xr;
}

Compilation message (stderr)

coins.cpp: In function 'std::vector<int> coin_flips(std::vector<int>, int)':
coins.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 = 0; i < b.size(); i++) {
      |                  ~~^~~~~~~~~~
coins.cpp:9:2: error: 'flips' was not declared in this scope; did you mean 'filps'?
    9 |  flips[0] = xr;
      |  ^~~~~
      |  filps
coins.cpp: In function 'int find_coin(std::vector<int>)':
coins.cpp:15:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   15 |  for (int i = 0; i < b.size(); i++) {
      |                  ~~^~~~~~~~~~