Submission #1910159


Source Code Expand

#include <bits/stdc++.h>
 
using namespace std;
 
#define pb push_back
#define mp make_pair
#define bin(x,b) bitset<b> vb(x); cout << vb << '\n';
 
#if ( ( _WIN32 || __WIN32__ ) && __cplusplus < 201103L)
    #define lld "%I64d"
#else
    #define lld "%lld"
#endif
 
typedef unsigned long long ll;
typedef pair <int,int> pi;
 
const long double EPS = 1e-10;
const ll MOD = 1e9 + 7;
const long double PI = 3.1415926535897932384626433832795028841;
 
ll powmod(ll a,ll b) {ll res=1;a%=MOD;for(;b;b>>=1){if(b&1)res=res*a%MOD;a=a*a%MOD;}return res;}
 
 
const int maxn = 1e5 + 5;
const int maxm = 1e5 + 5;
const int maxk = 1e5 + 5;
 

int main(){
	string s; cin >> s;
	int n = s.size();
	int ans = n;
	for (int i = 0;i < n-1;i++){
		if (s[i] != s[i+1]) ans = min(ans , max(i+1,n-1-(i+1)+1));
	}
	cout << ans << '\n';
}

Submission Info

Submission Time
Task D - Wide Flip
User arielnowik
Language C++14 (GCC 5.4.1)
Score 500
Code Size 849 Byte
Status AC
Exec Time 5 ms
Memory 512 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 500 / 500
Status
AC × 3
AC × 30
Set Name Test Cases
Sample s1.txt, s2.txt, s3.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 20.txt, 21.txt, 22.txt, 23.txt, 24.txt, 25.txt, 26.txt, 27.txt, s1.txt, s2.txt, s3.txt
Case Name Status Exec Time Memory
01.txt AC 5 ms 512 KB
02.txt AC 5 ms 512 KB
03.txt AC 5 ms 512 KB
04.txt AC 5 ms 512 KB
05.txt AC 5 ms 512 KB
06.txt AC 5 ms 512 KB
07.txt AC 4 ms 512 KB
08.txt AC 5 ms 512 KB
09.txt AC 5 ms 512 KB
10.txt AC 5 ms 512 KB
11.txt AC 5 ms 512 KB
12.txt AC 5 ms 512 KB
13.txt AC 5 ms 512 KB
14.txt AC 5 ms 512 KB
15.txt AC 5 ms 512 KB
16.txt AC 5 ms 512 KB
17.txt AC 4 ms 512 KB
18.txt AC 4 ms 512 KB
19.txt AC 4 ms 512 KB
20.txt AC 4 ms 512 KB
21.txt AC 1 ms 256 KB
22.txt AC 1 ms 256 KB
23.txt AC 1 ms 256 KB
24.txt AC 1 ms 256 KB
25.txt AC 1 ms 256 KB
26.txt AC 1 ms 256 KB
27.txt AC 1 ms 256 KB
s1.txt AC 1 ms 256 KB
s2.txt AC 1 ms 256 KB
s3.txt AC 1 ms 256 KB