Create 1880.cpp

pull/45/head
Kirigaya Kazuto 2016-11-17 09:41:02 +08:00 committed by GitHub
parent 4b418100d3
commit ec4354b880
1 changed files with 32 additions and 0 deletions

32
QUSTOJ/1880.cpp Normal file
View File

@ -0,0 +1,32 @@
#include <iostream>
#include <string>
using namespace std;
string str1;
int main()
{
int n,m;
cin>>n>>m;
for(int i=0; i<n; i++)
{
int w=1,t=0;
cin>>str1;
int sz=str1.size();
for(int j=0; j<sz; j++)
{
if(str1.at(j)=='S')
t++;
else
t--;
if(t>m||t<0)
{
w=0;
break;
}
}
if(w==1&&t==0)
cout<<"YES"<<endl;
else
cout<<"NO"<<endl;
}
return 0;
}