0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 08:45:25 +00:00
OI-codes/LibreOJ/6/data/interaction.h
2022-09-17 16:23:49 +08:00

29 lines
581 B (Stored with Git LFS)
C++

#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;
}