# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
913841 | stefanneagu | 콤보 (IOI18_combo) | C++17 | 14 ms | 1972 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "combo.h"
using namespace std;
string guess_sequence(int n) {
// primul char
set<string> s;
s.insert("A");
s.insert("B");
s.insert("X");
s.insert("Y");
string primul = "";
if(n == 1) {
for(auto it : s) {
if(it == "Y") {
primul = it;
break;
}
if(press(it) == 1) {
primul = it;
break;
}
}
return primul;
}
if(press("AB") != 0) {
if(press("A") == 1) {
primul = "A";
} else {
primul = "B";
}
} else {
if(press("X") == 1) {
primul = "X";
} else {
primul = "Y";
}
}
s.erase(primul);
// primul e primul char
string ans = primul;
string add = "";
vector<string> v;
for(auto it : s) {
v.push_back(it);
}
for(int i = 2; i < n; i ++) {
string apel = ans;
apel += v[0];
apel += ans;
apel += v[1];
apel += v[2];
apel += ans;
apel += v[1];
apel += v[1];
apel += ans;
apel += v[1];
apel += v[0];
int x = press(apel);
if(x == i - 1) {
ans += v[2];
} else if(x == i) {
ans += v[0];
} else if(x == i + 1) {
ans += v[1];
} else {
assert("ce se" == "intampla");
}
}
for(auto it : v) {
string apel = ans;
apel += it;
if(it == v[2]) {
return apel;
}
if(press(apel) == n) {
return apel;
}
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |