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

Codeforces Round 925 (Div. 3) 1931D. Divisible Pairs Solution

    Problem Link  :   https://codeforces.com/contest/1931/problem/D S olution in C++: /// Author : AH_Tonmoy #include < bits / stdc ++. ...

Powered by Blogger.