码迷,mamicode.com
首页 > 其他好文 > 详细

uva 1585

时间:2017-05-07 17:40:19      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:tac   pre   using   clu   sum   names   while   pop   stack   

#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

标签:tac   pre   using   clu   sum   names   while   pop   stack   

原文地址:http://www.cnblogs.com/masterchd/p/6821294.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!