Submission #873061

#TimeUsernameProblemLanguageResultExecution timeMemory
873061vjudge1Password (RMI18_password)C++17
0 / 100
146 ms712 KiB
#include<bits/stdc++.h> using namespace std; int cnt[200]; int query(string q); string guess(int n, int s) { for(char c='a'; c<'a'+s; c++){ string s; for(int i=0; i<n; i++) s += c; cnt[c] = query(s); } string ans; for(int i=0; i<n; i++){ string t = ans; t += '#'; for(char c='a'; c<'a'+s; c++){ if(!cnt[c]) continue; if(cnt[c]+ans.size()==n){ ans += c; cnt[c]--; break; } for(int j=1; j<=cnt[c]; j++){ t += c; } bool ok = 0; for(char d='a'; d<'a'+s; d++){ t[ans.size()] = d; if(!cnt[d]) continue; if(query(t) == t.size()){ ok = 1; break; } } if(!ok){ ans += c; cnt[c]--; break; } for(int j=1; j<=cnt[c]; j++){ t.pop_back(); } } } return ans; }

Compilation message (stderr)

password.cpp: In function 'std::string guess(int, int)':
password.cpp:13:7: warning: array subscript has type 'char' [-Wchar-subscripts]
   13 |   cnt[c] = query(s);
      |       ^
password.cpp:19:12: warning: array subscript has type 'char' [-Wchar-subscripts]
   19 |    if(!cnt[c]) continue;
      |            ^
password.cpp:20:11: warning: array subscript has type 'char' [-Wchar-subscripts]
   20 |    if(cnt[c]+ans.size()==n){
      |           ^
password.cpp:20:24: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   20 |    if(cnt[c]+ans.size()==n){
      |       ~~~~~~~~~~~~~~~~~^~~
password.cpp:22:9: warning: array subscript has type 'char' [-Wchar-subscripts]
   22 |     cnt[c]--;
      |         ^
password.cpp:25:24: warning: array subscript has type 'char' [-Wchar-subscripts]
   25 |    for(int j=1; j<=cnt[c]; j++){
      |                        ^
password.cpp:30:13: warning: array subscript has type 'char' [-Wchar-subscripts]
   30 |     if(!cnt[d]) continue;
      |             ^
password.cpp:31:17: 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(t) == t.size()){
      |        ~~~~~~~~~^~~~~~~~~~~
password.cpp:37:9: warning: array subscript has type 'char' [-Wchar-subscripts]
   37 |     cnt[c]--;
      |         ^
password.cpp:40:24: warning: array subscript has type 'char' [-Wchar-subscripts]
   40 |    for(int j=1; j<=cnt[c]; j++){
      |                        ^
#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...