| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 819021 | vjudge1 | Growing Vegetable is Fun 3 (JOI19_ho_t3) | C++17 | 1 ms | 212 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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 time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
