# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
433910 | AmineTrabelsi | Password (RMI18_password) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
using namespace std;
// Hi
//int query(string s);
string guess(int n,int s){
string res = "";
for(int i=0;i<n;i++){
bool found = 0;
for(int c=0;c<s;c++){
char ch = 'a'+c;
//cout << i<<" first "<<ch+res<<'\n';
int pref = query((ch+res));
if(pref == i+1){
res = ch+res;
found = 1;
break;
}
}
if(found)continue;
for(int ind=0;ind<i;ind++){
for(int c=0;c<s;c++){
char ch = 'a'+c;
string temp = res.substr(0,ind+1)+ch+res.substr(ind+1,n-ind-1);
//cout << i<<" "<<ind<<" "<<temp <<'\n';
int pref = query((temp));
if(pref == i+1){
res = temp;
found = 1;
break;
}
}
if(found)break;
}
}
return res;
}