# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
646091 | sandry24 | 콤보 (IOI18_combo) | C++17 | 1 ms | 208 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef pair<int, int> pi;
#define pb push_back
#define mp make_pair
#define f first
#define s second
int press(std::string p);
vector<char> chars = {'A', 'B', 'X', 'Y'};
string guess_sequence(int n){
string temp = "";
while(temp.size() != n){
if(temp.size() == 0){
int ans = 3;
for(int i = 0; i < 3; i++)
if(press(temp + chars[i]) == temp.size()+1)
ans = i;
temp += chars[ans];
chars.erase(find(chars.begin(), chars.end(), temp[0]));
} else {
string temp2 = temp + chars[1] + temp + chars[2] + chars[0] + temp + chars[2] + chars[1]
+ temp + chars[2] + chars[2];
int ans = press(temp2) - temp.size();
temp += chars[ans];
}
}
return temp;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |