# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
107246 | wonyoung | 콤보 (IOI18_combo) | C++14 | 117 ms | 712 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <vector>
#include <string>
using namespace std;
int press(string p);
string guess_sequence(int N)
{
vector<char> buttons = { 'A', 'B', 'X', 'Y' };
string prefix;
char first_char;
int n;
n = press("AB");
if (n == 2)
{
prefix = "AB";
buttons.erase(buttons.begin());
}
else if (n == 1)
{
if (press("A") > 0)
{
prefix = "A";
buttons.erase(buttons.begin());
}
else
{
prefix = "B";
buttons.erase(buttons.begin()+1);
}
}
else
{
if (press("X") > 0)
{
prefix = "X";
buttons.erase(buttons.begin()+2);
}
else
{
prefix = "Y";
buttons.erase(buttons.begin()+3);
}
}
int i;
while (prefix.length() < N)
{
for (i=0; i< 2; i++)
{
string query_string = "";
string s = prefix;
s.push_back(buttons[i]);
query_string += s;
while (query_string.length() + s.length() + 1 < N * 4)
{
s.push_back(buttons[0]);
query_string += s;
}
n = press(query_string);
if (n > prefix.length())
{
break;
}
}
prefix.push_back(buttons[i]);
for (int i=prefix.length(); i<n; i++)
{
prefix.push_back(buttons[0]);
}
}
return prefix;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |