Submission #475320

# Submission time Handle Problem Language Result Execution time Memory
475320 2021-09-21T20:36:55 Z ogibogi2004 Password (RMI18_password) C++14
0 / 100
14 ms 420 KB
#include<bits/stdc++.h>
using namespace std;
int query(string s);
string s1,s2,tmp;
string solve(int l,int r)
{
    if(l==r)
    {
        string s="";
        for(int j=0;;j++)
        {
            s+=char('a'+l);
            if(query(s)!=s.size())
            {
                s.pop_back();
                return s;
            }
        }
    }
    int mid=(l+r)/2;
    s1=solve(l,mid);
    s2=solve(mid+1,r);
    tmp="";
    int j=0;
    for(int i=0;i<=s1.size();i++)
    {
        if(j<s2.size())
        {
            tmp=s1;
            tmp.insert(tmp.begin()+i,s2[j]);
            if(query(tmp)==tmp.size())
            {
                s1=tmp;
                j++;
            }
        }
    }
    if(j<s2.size())assert(false);
    return s1;
}
string guess(int n,int s)
{
    return solve(0,s-1);
}

Compilation message

password.cpp: In function 'std::string solve(int, int)':
password.cpp:13:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   13 |             if(query(s)!=s.size())
      |                ~~~~~~~~^~~~~~~~~~
password.cpp:25:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   25 |     for(int i=0;i<=s1.size();i++)
      |                 ~^~~~~~~~~~~
password.cpp:27:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   27 |         if(j<s2.size())
      |            ~^~~~~~~~~~
password.cpp:31:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   31 |             if(query(tmp)==tmp.size())
      |                ~~~~~~~~~~^~~~~~~~~~~~
password.cpp:38:9: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   38 |     if(j<s2.size())assert(false);
      |        ~^~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 328 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 200 KB Guessed the password with 98 queries.
2 Correct 3 ms 200 KB Guessed the password with 186 queries.
3 Correct 3 ms 200 KB Guessed the password with 183 queries.
4 Runtime error 4 ms 328 KB Execution killed with signal 6
# Verdict Execution time Memory Grader output
1 Runtime error 14 ms 420 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 328 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 328 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -