বৃহস্পতিবার, ৬ জুলাই, ২০১৭

UVA 12416 - Excessive Space Remover

#include<bits/stdc++.h>
using namespace std;
main()
{
    string s;
    while(getline(cin,s))
    {
        double mx=0.0,cnt=0.0;
        long i;
        for(i=0;i<s.size();i++)
        {
            if(s[i]==' ')
                cnt+=1.0;
            else
            {
                mx=max(mx,log2(cnt));
                cnt=0.0;
            }
        }
        cout<<ceil(mx)<<endl;
    }
}

কোন মন্তব্য নেই:

একটি মন্তব্য পোস্ট করুন

Factory Pattern

Factory Method  is a creational design pattern that provides an interface for creating objects in a superclass but allows subclasses to alte...