# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
489459 | QuantumK9 | 콤보 (IOI18_combo) | C++17 | 31 ms | 604 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include <bits/stdc++.h>
using namespace std;
string guess_sequence(int N) {
// guess the first letter: this will take at MOST two moves
string start = "";
int coins = press("AB");
if ( coins > 0 ){
coins = press("A");
if ( coins > 0 ){ start = "A"; }
else{ start = "B"; }
}
else{
coins = press("X");
if ( coins > 0 ){ start = "X"; }
else{ start = "Y"; }
}
if ( N == 1 ){ return start; }
// guess the succeeding letters --> current method needs two guesses / letter
string check[3];
int ind = 0;
if ( "A" != start ){ check[ind] = "A"; ind++; }
if ( "B" != start ){ check[ind] = "B"; ind++; }
if ( "X" != start ){ check[ind] = "X"; ind++; }
if ( "Y" != start ){ check[ind] = "Y"; ind++; }
for ( int i = 1; i < N-1; i++ ){
string use = start+check[0];
use += start+check[1]+check[0];
use += start+check[1]+check[1];
use += start+check[1]+check[2];
coins = press( use );
int diff = coins - start.length();
if ( diff == 0 ){ start += check[2]; }
else if ( diff == 1 ){ start += check[0]; }
else if ( diff == 2 ){ start += check[1]; }
}
coins = press( start+check[0] );
if ( coins == start.length()+1 ){ start += check[0]; }
else{
coins = press( start+check[1] );
if ( coins == start.length()+1 ){ start += check[1]; }
else{ start += check[2]; }
}
//cout << start << endl;
return start;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |