Submission #961151

# Submission time Handle Problem Language Result Execution time Memory
961151 2024-04-11T15:14:56 Z raspy Combo (IOI18_combo) C++14
Compilation error
0 ms 0 KB
#include "combo.h"

using namespace std;

string guess_sequence(int N)
{
	char a[5] = {'A', 'B', 'X', 'Y'};
	string p = "";
	for (int i = 0; i < 3; i++)
	{
		p[0] = a[i];
		int odg = press(p);
		if (odg == 1)
		{
			swap(a[i], a[3]);
			break;
		}
		if (i == 3)
			p[0] = a[3];
	}
	char zc = p[0];
	string s = "";
	s += zc;
	for (int tr = 2; tr <= n; tr++)
	{
		p = s + a[0];
		p = p + s+a[1]+a[0];
		p = p + s+a[1]+a[2];
		int odg = press(p);
		if (odg == tr)
			s += a[0];
		else if (odg == tr+1)
			s += a[1];
		else
			s += a[2];
	}
	return s;
}

Compilation message

combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:24:25: error: 'n' was not declared in this scope
   24 |  for (int tr = 2; tr <= n; tr++)
      |                         ^