Submission #1107306

#TimeUsernameProblemLanguageResultExecution timeMemory
1107306vjudge1Growing Vegetable is Fun 3 (JOI19_ho_t3)C++17
0 / 100
1 ms336 KiB
#include <bits/stdc++.h> using namespace std; #define ll long long #define nn "\n"; #define pb push_back #define all(v) (v).begin() , (v).end() const int N = 2e4+ 4; int n , T , q , m ; signed main(){ cin>> n ; string s ; cin>> s ; vector<pair<int , string>>v; for(int i=0 ; i < ( 1 << n ) - 1; i++){ string t = s; int c =0 ; for(int j =0 ; j < s.size()- 1 ; j++){ if(( i >> j )&1 ){ swap(t[j] , t[j+1]); c++; } } int ok =0 ; for(int j=0 ; j < t.size() - 1; j++){ if(t[j]==t[j+1]){ ok = 1; break; } } if(!ok)v.pb({c , t}); } if(!v.size())cout <<-1; sort(all(v)); for(auto it:v){ cout <<it.first << ' ' << it.second << nn } }

Compilation message (stderr)

joi2019_ho_t3.cpp: In function 'int main()':
joi2019_ho_t3.cpp:17:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   17 |         for(int j =0 ; j < s.size()- 1 ; j++){
      |                        ~~^~~~~~~~~~~~~
joi2019_ho_t3.cpp:24:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   24 |         for(int j=0 ; j < t.size() - 1; 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...