# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
123780 | mlyean00 | 콤보 (IOI18_combo) | C++14 | 43 ms | 456 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "combo.h"
using namespace std;
string moves = "ABXY";
int N;
string s;
void get_first() {
for (char c : moves) {
if (press(string(1, c)) == 1) {
s = c;
break;
}
}
moves.erase(moves.find(s[0]), 1);
}
void get_next() {
string p = s + moves[0];
for (char c : moves) {
p += s;
p.push_back(moves[1]);
p.push_back(c);
}
switch (press(p) - s.size()) {
case 0:
s.push_back(moves[2]);
break;
case 1:
s.push_back(moves[0]);
break;
case 2:
s.push_back(moves[1]);
break;
}
}
void get_last() {
for (char c : moves) {
if (press(s + c) > s.size()) {
s += c;
return;
}
}
}
string guess_sequence(int n) {
int N = n;
get_first();
for (int i = 1; i < N - 1; ++i)
get_next();
if (N > 1) get_last();
return s;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |