# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
154060 | nthoang | 콤보 (IOI18_combo) | C++11 | 4 ms | 300 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#ifndef LOCAL
#include "combo.h"
#endif
#ifdef LOCAL
#include "/Users/nth842002/Library/debug.h"
const string answer = "YAX";
int press(string p) {
int len = p.length();
int coins = 0;
for (int i = 0, j = 0; i < len; ++i) {
if (j < 3 && answer[j] == p[i]) {
++j;
} else if (answer[0] == p[i]) {
j = 1;
} else {
j = 0;
}
coins = max(coins, j);
}
return coins;
}
#endif
using namespace std;
const string moves = "ABXY";
string guess_sequence(int n) {
for (int mask = 0; mask < (1 << (n + n)); mask++) {
string s;
s.resize(n);
for (int i = 0, t = mask; i < n; i++) {
s[i] = moves[t % 4];
t /= 4;
}
// debug(s);
if (press(s) == n) {
return s;
}
}
}
#ifdef LOCAL
int main() {
debug(guess_sequence(3));
}
#endif
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |