Wednesday, May 30, 2018

UVA - 10324 .cpp file

#include<bits/stdc++.h>
using namespace std;
int main()
{
    string s;
    int t=1,n,p1,p2,i,c,tem;
    while(cin>>s)
    {
        if(s=="\n")
            break;
        cin>>n;
        printf("Case %d:\n",t++);
        while(n--)
        {
            cin>>p1>>p2;
            if(p1>p2)
                swap(p1,p2);
            if(p1==p2)
            {
                cout<<"Yes"<<endl;
                continue;
            }
            for(i=p1; i<p2; i++)
            {

                if(s[i]==s[i+1])
                    c=1;
                else
                {
                    c=0;
                    break;
                }
            }
            if(c==1)
                cout<<"Yes"<<endl;
            else
                cout<<"No"<<endl;
        }
    }
    return 0;
}

No comments:

Post a Comment