Codeforces 1363B. Subsequence Hate Solution

   Solution in C++:

 ///La ilaha illellahu muhammadur rasulullah

///******Bismillahir-Rahmanir-Rahim******///

///AH Tonmoy

///Department of CSE,23rd batch

    ///Islamic University,Bangladesh

    1. #include <bits/stdc++.h>
    2. using namespace std;
    3. typedef long long ll;
    4. int main()
    5. {
    6. int t;
    7. cin >> t;
    8. while(t--)
    9. {
    10. string s;
    11. cin >> s;
    12. int z,o,z1,o1,ans=1e9,n,i,j;
    13. n=s.size();
    14. z=o=z1=o1=0;
    15. z=count(s.begin(),s.end(),'0');
    16. o=n-z;
    17. z1=z;
    18. o1=o;
    19. for(i=0; i<n; i++)
    20. {
    21. ans=min(ans,min(z1,o1));
    22. if(s[i]=='0')z1--,o1++;
    23. else
    24. o1--,z1++;
    25.  
    26. }
    27. cout<<ans<<endl;
    28. }
    29. }

    No comments

    Most View Post

    Recent post

    RESTful APIs with CRUD Operations in Laravel 12| (2025)

      RESTful APIs serve as the foundation of modern web development. They follow a set of rules called Representational State Transfer (REST) t...

    Powered by Blogger.