| Task: | Inversions |
| Sender: | Karhukopla |
| Submission time: | 2018-05-26 11:23:28 +0300 |
| Language: | C++ |
| Status: | READY |
| Result: | ACCEPTED |
| test | verdict | time | |
|---|---|---|---|
| #1 | ACCEPTED | 0.04 s | details |
| #2 | ACCEPTED | 0.06 s | details |
| #3 | ACCEPTED | 0.05 s | details |
| #4 | ACCEPTED | 0.05 s | details |
| #5 | ACCEPTED | 0.05 s | details |
Compiler report
input/code.cpp: In function 'int main()':
input/code.cpp:16:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i < s.length(); i++) {
~~^~~~~~~~~~~~Code
#include <bits/stdc++.h>
#define ll long long
#define lll __int128
#define pii pair<int, int>
#define M 1000000007
#define N (1<<20)
using namespace std;
int main () {
string s;
cin>>s;
int b;
int w;
b = w = 0;
for (int i = 0; i < s.length(); i++) {
int x = s[i] - '0';
if (x != (i % 2)) b++;
if (x != 1 - (i % 2)) w++;
}
cout<<min(b, w)<<endl;
}Test details
Test 1
Verdict: ACCEPTED
| input |
|---|
| 000000000000000000000000000000... |
| correct output |
|---|
| 500000 |
| user output |
|---|
| 500000 |
Test 2
Verdict: ACCEPTED
| input |
|---|
| 111111111111111111111111111111... |
| correct output |
|---|
| 500000 |
| user output |
|---|
| 500000 |
Test 3
Verdict: ACCEPTED
| input |
|---|
| 010101010101010101010101010101... |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 4
Verdict: ACCEPTED
| input |
|---|
| 101010101010101010101010101010... |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 5
Verdict: ACCEPTED
| input |
|---|
| 110101011010110100100111110110... |
| correct output |
|---|
| 499476 |
| user output |
|---|
| 499476 |
