Submission #819021

#TimeUsernameProblemLanguageResultExecution timeMemory
819021vjudge1Growing Vegetable is Fun 3 (JOI19_ho_t3)C++17
0 / 100
1 ms212 KiB
#include <bits/stdc++.h> using namespace std; int R, G, B; int main() { int N; cin >> N; char str[N]; for (int i = 0; i < N; i++) { cin >> str[i]; if (str[i] == 'R') { R++; } else if (str[i] == 'G') { G++; } else { B++; } } if (max(max(R,G), B) > (N + 1) / 2) { cout << -1 << endl; return 0; } int l = 1, r = 1; int moves = 0; // if same as previous go next until not same while (l < N) { if (str[l] == str[l-1]) { // if (r <= l) r = l + 1; r = l + 1; while (str[r] == str[l-1]) { r++; } swap(str[l], str[r]); moves += r - l; } l++; } cout << moves << endl; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...