# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
106322 | tri | 콤보 (IOI18_combo) | C++14 | 72 ms | 560 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef vector<int> vi;
typedef vector<ld> vd;
typedef vector<ll> vl;
#define pb push_back
#define f first
#define s second
/*
int press(string p) {
cout << p << endl;
int res;
cin >> res;
return res;
}*/
int press(string p);
string keys[] = {"A", "B", "X", "Y"};
string guess_sequence(int N) {
if (N == 1) {
for (int i = 0; i < 3; i++) {
if (press(keys[i]) == 1) {
return keys[i];
}
}
return keys[3];
}
string seq = "";
int f = -1;
int res = press("AB");
if (res != 0) {
res = press("A");
if (res == 1) {
seq.append("A");
f = 0;
} else {
seq.append("B");
f = 1;
}
} else {
res = press("X");
if (res == 1) {
seq.append("X");
f = 2;
} else {
seq.append("Y");
f = 3;
}
}
vector<string> cand(keys, keys + 4);
cand.erase(cand.begin() + f);
for (int i = 1; i < N - 1; i++) {
string q = "";
for (int j = 0; j < 3; j++) {
q.append(seq);
q.append(cand[0]);
q.append(cand[j]);
}
q.append(seq);
q.append(cand[1]);
int res = press(q);
if (res == seq.length() + 2) {
seq.append(cand[0]);
} else if (res == seq.length() + 1) {
seq.append(cand[1]);
} else {
seq.append(cand[2]);
}
}
string q = "";
q.append(seq);
q.append(cand[0]);
q.append(seq);
q.append(cand[1]);
res = press(q);
if (res == seq.length() + 1) {
q = "";
q.append(seq);
q.append(cand[0]);
int res = press(q);
if (res == seq.length() + 1) {
seq.append(cand[0]);
} else {
seq.append(cand[1]);
}
} else {
seq.append(cand[2]);
}
return seq;
}
/*
int main() {
cout << guess_sequence(5);
}*/
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |