# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
645249 | alexdd | Password (RMI18_password) | C++17 | 247 ms | 532 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<iostream>
#include<unordered_map>
using namespace std;
int query(string str);
unordered_map<string,int> umap;
int intreaba(string str)
{
if(str=="")
return 0;
//if(umap.count(str)==0)
// umap[str]=query(str);
//return umap[str];
return query(str);
}
string tochar(int ch)
{
char ceva=ch+'a';
string nush="";
nush=nush+ceva;
return nush;
}
string guess(int n, int s)
{
umap.clear();
string rez="";
for(int i=1;i<n;i++)
{
for(int ch=0;ch<s;ch++)
{
if(intreaba(rez+tochar(ch))==intreaba(rez))
continue;
bool bl=0;
for(int bd=0;bd<s;bd++)
{
if(bd==ch)
continue;
if(intreaba(rez+tochar(ch))<intreaba(rez+tochar(bd)+tochar(ch)))
{
bl=1;
break;
}
}
if(bl==0)
{
rez=rez+tochar(ch);
break;
}
}
}
for(int ch=0;ch<s;ch++)
{
if(intreaba(rez+tochar(ch))==n)
{
return rez+tochar(ch);
}
}
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |