# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
648868 | Litusiano | 콤보 (IOI18_combo) | C++14 | 29 ms | 496 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<iostream>
#include <cstdio>
#include <cstdlib>
#include <algorithm>
#include <string>
#include "combo.h"
using namespace std;
string guess_sequence(int N){
string ans;
int x = 1;
if(press("AB") > 0){
if(press("A")){
ans+='A';
x = 0;
}
else ans+='B';
}
else{
if(press("X")){
ans+='X';
x = 2;
}
else{
ans+='Y';
x = 3;
}
}
string all = "ABXY";
string pos;
for(int i = 0; i<all.size(); ++i){
if(i == x) continue;
pos+=all[i];
}
/*
Faig una sola opcio amb 0
dos opcions amb 1
cap amb 2
*/
for(int i = 2; i<=N-2; ++i){
string s0 = ans+pos[0];
string s1 = ans+pos[1]+pos[0],s2 = ans+pos[1]+pos[1],s3 = ans+pos[1]+pos[2];
string tot = s0+s1+s2+s3;
//cout<<4*N<<" "<<tot.size()<<endl;
int c = press(s0+s1+s2+s3);
ans+=pos[(c-i)];
}
for(int i = max(2,N-1); i<=N; ++i){
string tot = ans; tot+="A";
tot+=ans; tot+="B";
//cout<<tot<<" "<<press(tot)<<endl;
if(press(tot) >= i){
tot.pop_back();
if(press(tot) >= i) ans+="A";
else ans+="B";
}
else{
tot = ans;
tot+='X';
if(press(tot) >= i) ans+="X";
else ans+='Y';
}
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |