uva 1585

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uva 1585相关的知识,希望对你有一定的参考价值。

#include <bits/stdc++.h>
using namespace std;
int main()
{
    int k;
    cin>>k;
    stack<int> score;
    int t=1;
    string s;
    while(k--)
    {
    t=1;
    cin>>s;
    int len=s.size();
    for(int i=0;i<len;i++)
    {
        if(s[i]==‘O‘)
            score.push(t++);
        if(s[i]==‘X‘)
        {
            t=1;
        }
    }
    int sum=0;
    while(!score.empty())
    {
        sum+=score.top();
        score.pop();
    }
    cout<<sum<<endl;
    }

}

  

以上是关于uva 1585的主要内容,如果未能解决你的问题,请参考以下文章

UVA1585

UVa 1585 - Score

UVa 1585 Score(得分)

(UVA)1585 --Score(得分)

chaper3_exercise_Uva1585_score

习题3-1 得分(Score, ACM/ICPC Seoul 2005, UVa1585)