0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-21 23:25:24 +00:00
OI-codes/LibreOJ/6/data/interaction.h

29 lines
581 B
C
Raw Normal View History

2022-05-28 12:25:28 +00:00
#include <iostream>
#include <vector>
int get_num()
{
std::cout << "get_num" << std::endl << std::flush;
int ret;
std::cin >> ret;
return ret;
}
int guess(int index, int x)
{
std::cout << "guess " << index << " " << x << std::endl << std::flush;
int ret;
std::cin >> ret;
return ret;
}
void submit(const std::vector<int> &result)
{
std::cout << "submit ";
for (std::vector<int>::const_iterator iter = result.begin(); iter != result.end(); iter++)
{
std::cout << *iter << " ";
}
std::cout << std::endl << std::flush;
}