Codeforces 897A. Between the Offices Solution

Solve in C++:

//AH Tonmoy
//Department of CSE ,Islamic University


#include<bits/stdc++.h>
using namespace  std;
int main()
{
    char s[10000];
    int cf=0,cs=0,i,n;
    cin>>n;
    {
        cf=0,cs=0;
        for(i=0; i<n; i++)
        {
            cin>>s[i];
        }
        for(i=0; i<n; i++)
        {

            if(s[i]=='S'&&s[i+1]=='F')
                cf++;
            else if(s[i]=='F'&&s[i+1]=='S')
                cs++;
        }
        if(cf>cs)
        {
           cout<<"yes"<<endl;
           cs=0,cf=0;
        }

        else
        {
            cout<<"no"<<endl;
            cs=0,cf=0;
        }
    }
}

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.