답안 #645247

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
645247 2022-09-26T13:57:43 Z alexdd Password (RMI18_password) C++17
0 / 100
7 ms 496 KB
#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];
}
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

password.cpp: In function 'std::string guess(int, int)':
password.cpp:24:16: warning: control reaches end of non-void function [-Wreturn-type]
   24 |     string rez="";
      |                ^~
# 결과 실행 시간 메모리 Grader output
1 Runtime error 6 ms 300 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 2 ms 496 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 7 ms 464 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 6 ms 300 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 6 ms 300 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -