# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
589331 | PoonYaPat | 콤보 (IOI18_combo) | C++14 | 33 ms | 524 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
//#include "grader.cpp";
#include <bits/stdc++.h>
using namespace std;
//int press()
string guess_sequence(int N) {
string ans,first;
if (press("AB")>=1) {
if (press("A")==1) first="A";
else first="B";
} else {
if (press("X")==1) first="X";
else first="Y";
}
ans+=first;
vector<string> lt; //A,B,X
if (first!="A") lt.push_back("A");
if (first!="B") lt.push_back("B");
if (first!="X") lt.push_back("X");
if (first!="Y") lt.push_back("Y");
for (int i=1; i<N-1; ++i) {
int cnt=press(ans+lt[0]+lt[0]+ans+lt[0]+lt[1]+ans+lt[0]+lt[2]+ans+lt[1]);
int sz=ans.size();
if (cnt==sz) ans+=lt[2];
else if (cnt==sz+1) ans+=lt[1];
else ans+=lt[0];
}
if (N>1) {
if (press(ans+lt[1]+ans+lt[2])==ans.size()+1) {
if (press(ans+lt[1])==ans.size()+1) ans+=lt[1];
else ans+=lt[2];
} else ans+=lt[0];
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |