이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#ifndef ntmin
#include "combo.h";
#endif // ntmin
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<int, ll> pil;
#define fi first
#define sc second
vector<string> p = {"A", "B", "X", "Y"};
string guess_sequence(int N){
string ans = "";
for(string& t : p){
if(press(t)){
swap(t, p[3]);
ans += t;
p.pop_back();
break;
}
}
for(int i = 1; i < N; ++i){
bool ok = 0;
for(int j = 0; j < 2; ++j){
if(press(ans + p[j])){
ok = 1;
ans.append(p[j]);
break;
}
}
if(!ok) ans.append(p[2]);
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
combo.cpp:2:23: warning: extra tokens at end of #include directive
2 | #include "combo.h";
| ^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |