# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
895095 | 2023-12-29T12:17:51 Z | hariaakas646 | Growing Vegetable is Fun 3 (JOI19_ho_t3) | C++14 | 1 ms | 348 KB |
#include <bits/stdc++.h> using namespace std; #define scd(t) scanf("%d", &t) #define sclld(t) scanf("%lld", &t); #define forr(i, l, r) for(int i=l; i<r; i++) #define frange(i, l) forr(i, 0, l) #define pb push_back #define mp make_pair #define f first #define s second #define all(x) x.begin(), x.end() typedef vector<int> vi; typedef pair<int, int> pii; typedef vector<pii> vii; typedef long long lli; typedef vector<vi> vvi; typedef vector<lli> vll; typedef vector<bool> vb; typedef set<int> seti; void usaco() { freopen("/media/hariaakash646/785EF1075EF0BF46/CompetitiveProgramming/input.in", "r", stdin); } int n; lli dist(string &st1, string &st2) { vi r1, g1, y1, r2, g2, y2; lli tot = 0; frange(i, n) { if(st1[i] == 'R') r1.pb(i); if(st1[i] == 'G') g1.pb(i); if(st2[i] == 'R') r2.pb(i); if(st2[i] == 'G') g2.pb(i); } frange(i, r1.size()) tot += abs(r1[i] - r2[i]); frange(i, g1.size()) tot += abs(g1[i] - g2[i]); return tot/2; } int main() { // usaco(); string str; cin >> n >> str; int rc = 0; int gc = 0; frange(i, n) { if(str[i] == 'R') rc++; else gc++; } if(rc == gc) { string str1, str2; frange(i, n) { if(i % 2) { str1 += 'R'; str2 += 'G'; } else { str1 += 'G'; str2 += 'R'; } } printf("%lld", min(dist(str, str1), dist(str, str2))); } else if(rc == gc+1) { string str1; frange(i, n) { if(i % 2==0) str1 += 'R'; else str1 += 'G'; } printf("%lld", dist(str, str1)); } else if(rc == gc-1) { string str1; frange(i, n) { if(i % 2) str1 += 'R'; else str1 += 'G'; } printf("%lld", dist(str, str1)); } else printf("-1"); }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 344 KB | Output is correct |
2 | Correct | 0 ms | 344 KB | Output is correct |
3 | Incorrect | 0 ms | 348 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 344 KB | Output is correct |
2 | Correct | 0 ms | 344 KB | Output is correct |
3 | Incorrect | 0 ms | 348 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Correct | 0 ms | 348 KB | Output is correct |
3 | Correct | 0 ms | 344 KB | Output is correct |
4 | Correct | 0 ms | 348 KB | Output is correct |
5 | Correct | 0 ms | 344 KB | Output is correct |
6 | Correct | 0 ms | 348 KB | Output is correct |
7 | Correct | 0 ms | 348 KB | Output is correct |
8 | Correct | 1 ms | 344 KB | Output is correct |
9 | Correct | 0 ms | 344 KB | Output is correct |
10 | Correct | 0 ms | 348 KB | Output is correct |
11 | Correct | 0 ms | 348 KB | Output is correct |
12 | Correct | 0 ms | 348 KB | Output is correct |
13 | Correct | 1 ms | 344 KB | Output is correct |
14 | Correct | 0 ms | 348 KB | Output is correct |
15 | Correct | 0 ms | 348 KB | Output is correct |
16 | Correct | 0 ms | 344 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 344 KB | Output is correct |
2 | Correct | 0 ms | 344 KB | Output is correct |
3 | Incorrect | 0 ms | 348 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |