# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
926927 | bobbilyking | 콤보 (IOI18_combo) | C++17 | 17 ms | 1756 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include <bits/stdc++.h>
using namespace std;
std::string guess_sequence(int N) {
vector<char> poss{'A', 'B', 'X', 'Y'};
string cur;
for (char c: poss) {
string s; s += c;
if (press(s)) {
poss.erase(find(poss.begin(), poss.end(), c));
cur = s;
break;
}
}
auto dumbextend = [&]() {
bool done = 0;
for (int i = 0; i < 2; ++i) {
cur += poss[i];
if (press(cur) == cur.size()) {
done = 1; break;
}
cur.pop_back();
}
if (!done) cur += poss[2];
};
while (cur.size() < N) {
// might not need this, but im scared of querying too mayn letters
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |