Submission #496349

#TimeUsernameProblemLanguageResultExecution timeMemory
496349triplem5dsPassword (RMI18_password)C++14
Compilation error
0 ms0 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); using is = pair<int, string>; priority_queue<is, vector<is>, greater<is>> pq; string mrg(string s1, string s2) { reverse(s2,s1); for(int i = s1.size(); i > 0 && s2.size(); --i) { for(int j = 1; j <= s2.size() + 1; j++) { if(j > s2.size()) { s1 = s1.substr(0,i) + s2 + s1.substr(i); s2 = ""; break; } if(query(s1.substr(0,i) + s2.substr(s2.size()-j) + s1.substr(i)) != s1.size() + j) { s1 = s1.substr(0,i) + s2.substr(s2.size()-(j-1)) + s1.substr(i); f(k,0,j-1)s2.pop_back(); break; } } } return s2+s1; } string guess(int n, int s) { f(i,0,s) { string str = string(query(string(n, 'a' + i)), 'a' + i); if(str.size()) pq.push(make_pair(str.size(), str)); } while(sz(pq) > 1) { auto cur1 = pq.top().second; pq.pop(); auto cur2 = pq.top().second; pq.pop(); string ans = mrg(cur1, cur2); pq.push(mp(sz(ans), ans)); } return pq.top().second; }

Compilation message (stderr)

password.cpp: In function 'std::string mrg(std::string, std::string)':
password.cpp:37:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   37 |         for(int j = 1; j <= s2.size() + 1; j++) {
      |                        ~~^~~~~~~~~~~~~~~~
password.cpp:38:18: 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()) {
      |                ~~^~~~~~~~~~~
password.cpp:43:78: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   43 |             if(query(s1.substr(0,i) + s2.substr(s2.size()-j) + s1.substr(i)) != s1.size() + j) {
      |                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
In file included from /usr/include/c++/10/algorithm:62,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
                 from password.cpp:6:
/usr/include/c++/10/bits/stl_algo.h: In instantiation of 'void std::reverse(_BIter, _BIter) [with _BIter = std::__cxx11::basic_string<char>]':
password.cpp:35:18:   required from here
/usr/include/c++/10/bits/stl_algo.h:1171:63: error: no matching function for call to '__iterator_category(std::__cxx11::basic_string<char>&)'
 1171 |       std::__reverse(__first, __last, std::__iterator_category(__first));
      |                                       ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
In file included from /usr/include/c++/10/bits/stl_algobase.h:65,
                 from /usr/include/c++/10/bits/char_traits.h:39,
                 from /usr/include/c++/10/ios:40,
                 from /usr/include/c++/10/istream:38,
                 from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from password.cpp:6:
/usr/include/c++/10/bits/stl_iterator_base_types.h:238:5: note: candidate: 'template<class _Iter> constexpr typename std::iterator_traits< <template-parameter-1-1> >::iterator_category std::__iterator_category(const _Iter&)'
  238 |     __iterator_category(const _Iter&)
      |     ^~~~~~~~~~~~~~~~~~~
/usr/include/c++/10/bits/stl_iterator_base_types.h:238:5: note:   template argument deduction/substitution failed:
/usr/include/c++/10/bits/stl_iterator_base_types.h: In substitution of 'template<class _Iter> constexpr typename std::iterator_traits< <template-parameter-1-1> >::iterator_category std::__iterator_category(const _Iter&) [with _Iter = std::__cxx11::basic_string<char>]':
/usr/include/c++/10/bits/stl_algo.h:1171:63:   required from 'void std::reverse(_BIter, _BIter) [with _BIter = std::__cxx11::basic_string<char>]'
password.cpp:35:18:   required from here
/usr/include/c++/10/bits/stl_iterator_base_types.h:238:5: error: no type named 'iterator_category' in 'struct std::iterator_traits<std::__cxx11::basic_string<char> >'