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