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

HDU-1029

时间:2014-09-03 10:53:36      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   for   2014   div   cti   

/********************************************************************
@file     Main_practise.cpp
@date     2014-9-3
@author   Tiger
@brief    Ignatius and the Princess IV
********************************************************************/
#include <cstdio>

int main(int argc, const char* argv[])
{
    int nNumbers = 0;
    while (scanf("%d", &nNumbers) != EOF)
    {
        int nCur = 0, nMax = 0, nCnt = 0;
        for (int i=0; i<nNumbers; ++i)
        {
            scanf("%d", &nCur);
            if (0 == nCnt)
            {
                nMax = nCur;
                nCnt = 1;
            }
            else
            {
                if (nMax == nCur)
                {
                    ++nCnt;
                }
                else
                {
                    --nCnt;
                }
            }
        }

        printf("%d\n", nMax);
    }

    return 0;
}

 

HDU-1029

标签:style   blog   color   io   ar   for   2014   div   cti   

原文地址:http://www.cnblogs.com/roronoa-zoro-zrh/p/3952965.html

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