zoukankan      html  css  js  c++  java
  • HDU 6015 Skip the Class

    Skip the Class

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
    Total Submission(s): 401    Accepted Submission(s): 235


    Problem Description
    Finally term begins. luras loves school so much as she could skip the class happily again.(wtf?)

    Luras will take n lessons in sequence(in another word, to have a chance to skip xDDDD).

    For every lesson, it has its own type and value to skip.

    But the only thing to note here is that luras can't skip the same type lesson more than twice.

    Which means if she have escaped the class type twice, she has to take all other lessons of this type.

    Now please answer the highest value luras can earn if she choose in the best way.
     

    Input
    The first line is an integer T which indicates the case number.

    And as for each case, the first line is an integer n which indicates the number of lessons luras will take in sequence.

    Then there are n lines, for each line, there is a string consists of letters from 'a' to 'z' which is within the length of 10,
    and there is also an integer which is the value of this lesson.

    The string indicates the lesson type and the same string stands for the same lesson type.

    It is guaranteed that——

    T is about 1000

    For 100% cases, 1 <= n <= 100,1 <= |s| <= 10, 1 <= v <= 1000
     

    Output
    As for each case, you need to output a single line.
    there should be 1 integer in the line which represents the highest value luras can earn if she choose in the best way.
     

    Sample Input
    2 5 english 1 english 2 english 3 math 10 cook 100 2 a 1 a 2
     

    Sample Output
    115 3
    水题:
    #include <iostream>
    #include <string.h>
    #include <stdlib.h>
    #include <algorithm>
    #include <math.h>
    #include <stdio.h>
    #include <map>
    #include <string>
    #include <vector>
    
    using namespace std;
    map<string,int> m;
    string s;
    int value;
    int n;
    vector<int> v[105];
    int main()
    {
        int t;
        scanf("%d",&t);
        int ans=0;
        while(t--)
        {
            scanf("%d",&n);
            int cot=0;
            ans=0;
            m.clear();
            for(int i=1;i<=n;i++)
                v[i].clear();
            for(int i=1;i<=n;i++)
            {
                cin>>s>>value;
                if(!m[s]) m[s]=++cot;
                v[m[s]].push_back(value);
            }
            for(int i=1;i<=cot;i++)
                sort(v[i].begin(),v[i].end());
            for(int i=1;i<=cot;i++)
            {
                int l=v[i].size()-1;
                ans+=v[i][l];
                if(l>=1)
                ans+=v[i][l-1];
            }
            printf("%d
    ",ans);
        }
        return 0;
    }



     
  • 相关阅读:
    git 之gitignore 添加项之后生效的问题
    使用 padding-bottom 设置高度基于宽度的自适应
    ES5中新增的Array方法详细说明
    zepto.js 自定义打包集成其他模块构建流程
    移动端如何让页面强制横屏
    快来看看抓包工具有哪些?
    实践出真知,小程序wepy,uni-app框架开发使用!
    开发过程遇到的css样式问题记录
    带坑使用微信小程序框架WePY组件化开发项目,附带第三方插件使用坑
    微信 + weui 框架记录
  • 原文地址:https://www.cnblogs.com/dacc123/p/8228557.html
Copyright © 2011-2022 走看看