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

HDU 4505

时间:2015-03-16 22:49:24      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

哈哈哈哈哈哈哈哈哈,省赛,一等奖,一定的一定的一定的一定的。。。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;

const int N=110;

bool flag[N];

int main(){
    int T,n,cnt,maxh,t;
    scanf("%d",&T);
    while(T--){
        cnt=0; maxh=0;
        memset(flag,false,sizeof(flag));
        scanf("%d",&n);
        for(int i=1;i<=n;i++){
            scanf("%d",&t);
            if(!flag[t]){
                cnt++;
                flag[t]=true;
            }
            maxh=max(maxh,t);
        }
        int ans=6*maxh+4*maxh+cnt*5+n;
        printf("%d\n",ans);
    }
    return 0;
}

 

HDU 4505

标签:

原文地址:http://www.cnblogs.com/jie-dcai/p/4342953.html

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