| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 106200 | tictaccat | Combo (IOI18_combo) | C++14 | 81 ms | 444 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include <bits/stdc++.h>
using namespace std;
vector<char> chars {'A','B','X','Y'};
std::string guess_sequence(int N) {
srand(time(NULL));
string ans = "";
//find first character, 2.25 guesses
char firstChar = '#';
random_shuffle(chars.begin(),chars.end());
for (int i = 0; i < 3; i++) {
if (press(ans+chars[i]) > 0) {
firstChar = chars[i];
break;
}
}
if (firstChar == '#') firstChar = chars[3];
ans += firstChar;
//each character 5/3 guesses
while (ans.size() < N) {
char nextChar = '#';
random_shuffle(chars.begin(),chars.end());
for (int i = 0; i < 3; i++) {
if (chars[i] == firstChar) continue;
if (press(ans+chars[i]) > ans.size()) {
nextChar = chars[i];
break;
}
}
if (nextChar == '#') nextChar = chars[3];
ans += nextChar;
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
