Submission #496286

#TimeUsernameProblemLanguageResultExecution timeMemory
496286triplem5dsPassword (RMI18_password)C++14
30 / 100
177 ms472 KiB
/// Zengy MANGA
#pragma GCC optimize("O3")
#pragma GCC optimize ("unroll-loops")
#pragma GCC target("avx,avx2,fma")

#include "bits/stdc++.h"

using namespace std;

#define pb push_back
#define F first
#define S second
#define f(i, a, b)  for(int i = a; i < b; i++)
#define all(a)  a.begin(),a.end()
#define rall(a) a.rbegin(),a.rend()
#define sz(x) (int)(x).size()
#define mp(x,y) make_pair(x,y)
#define popCnt(x) (__builtin_popcountll(x))

using ll = long long;
using ii = pair<int,int>;
using ull = unsigned long long;
using db = long double;

const int N = 2e5+5, LG = 18, MOD = 998244353;
const long double PI = acos(-1);

int query(string s);

string guess(int n, int s) {
    string ans = "";
    for(char c = 'a'; c < 'a'+s; c++) {
        for(int j = 0; ans.size() != n && j <= ans.size(); j++) {
            if(query(ans.substr(0,j)+string(1,c)+ans.substr(j)) > ans.size()) {
                ans = ans.substr(0,j)+string(1,c)+ans.substr(j);
            }
        }
    }
    return ans;
}

Compilation message (stderr)

password.cpp: In function 'std::string guess(int, int)':
password.cpp:33:35: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   33 |         for(int j = 0; ans.size() != n && j <= ans.size(); j++) {
      |                        ~~~~~~~~~~~^~~~
password.cpp:33:45: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   33 |         for(int j = 0; ans.size() != n && j <= ans.size(); j++) {
      |                                           ~~^~~~~~~~~~~~~
password.cpp:34:65: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   34 |             if(query(ans.substr(0,j)+string(1,c)+ans.substr(j)) > ans.size()) {
      |                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...