답안 #645237

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
645237 2022-09-26T13:28:39 Z alexdd Password (RMI18_password) C++17
0 / 100
1 ms 208 KB
#include<iostream>
#include<unordered_map>
using namespace std;
unordered_map<string,int> umap;
int query(string str);
int intreaba(string str)
{
    if(umap.count(str)==0)
        umap[str]=query(str);
    return umap[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<26;ch++)
        {
            if(query(rez+tochar(ch))==query(rez))
                continue;
            bool bl=0;
            for(int bd=0;bd<26;bd++)
            {
                if(query(rez+tochar(ch))<query(rez+tochar(bd)+tochar(ch)))
                {
                    bl=1;
                    break;
                }
            }
            if(bl==1)
            {
                rez=rez+tochar(ch);
                break;
            }
        }
    }
    return rez;
}
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 0 ms 208 KB Time limit exceeded (wall clock)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 0 ms 208 KB Time limit exceeded (wall clock)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1 ms 208 KB Time limit exceeded (wall clock)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 0 ms 208 KB Time limit exceeded (wall clock)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 0 ms 208 KB Time limit exceeded (wall clock)
2 Halted 0 ms 0 KB -