# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
107288 | kyunamk | 콤보 (IOI18_combo) | C++14 | 75 ms | 612 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include <iostream>
using namespace std;
static int debug = false;
string guess_sequence(int N) {
string p = "";
char *b;
string prefix ="";
if ( press("AB") )
{
//AB
if (press("A") ) {
prefix = "A";
b="BXY";
}
else
{
prefix = "B";
b="AXY";
}
}
else
{
//AB
if (press("X") )
{
prefix = "X";
b="ABY";
}
else
{
prefix = "Y";
b="ABX";
}
}
if(debug) cout << b[0] << b[1] << b[2] << endl;
int pn ;
while ( (pn=prefix.length()) < N-1 ) {
int i = 0 ;
int n = 0;
string s ="";
s+=prefix;
s+=b[1];
for ( i = 0 ; i < 3 ; i++) {
s+=prefix;
s+=b[2];
s+=b[i];
}
if(debug) cout << s << " ";
n = press(s) ;
if(debug) cout << n << endl;
prefix += b[n-pn];
if(debug) cout << "prefix " << prefix << endl;
}
if ( N > 1) {
if ( press(prefix + b[0] + prefix + b[1]) == N ) {
if ( press(prefix + b[0]) == N )
prefix+=b[0];
else
prefix+=b[1];
} else
{
prefix+=b[2];
}
}
if(debug) cout << prefix << endl;
return prefix;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |