zoukankan      html  css  js  c++  java
  • HDU 4011 Working in Beijing

    Working in Beijing

    Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 65768/65768 K (Java/Others)
    Total Submission(s): 659    Accepted Submission(s): 333


    Problem Description
    Mr. M is an undergraduate student of FDU. He finds an intern position in Beijing, so that he cannot attend all the college activities. But in some conditions, he must come back to Shanghai on certain date. We can assume the important activities that Mr. M must attend are occupy a whole day. Mr. M must take flight to Shanghai before that day and leave after that day. On the other hand, Mr. M is absent in Beijing and he will lose his salary for his absent.
    Sometimes the cost of flight is much higher than the loss of salary, so to save the cost on the travel, Mr. M can stay in Shanghai to wait for another important date before he back to Beijing.
    Now, Mr. M knows all of the important date in the next year. Help him schedule his travel to optimize the cost.
     

    Input
    The input contains several test cases. The first line of single integer indicates the number of test cases.
      For each test case, the first line contains three integers: n, a and b, denoting the number of important events, the cost of a single flight from Beijing to Shanghai or Shanghai to Beijing and the salary for a single day stay in Beijing. (1 <= n <= 100000, 1 <= a <= 1000000000, 1 <= b <=100)
      Next line contains n integers ti, denoting the time of the important events. You can assume the ti are in increasing order and they are different from each other. (0 <= ti <= 10000000)
     

    Output
    For each test case, output a single integer indicating the minimum cost for this year.
     

    Sample Input
    2 1 10 10 5 5 10 2 5 10 15 65 70
     

    Sample Output
    Case #1: 30 Case #2: 74
     

    Source
     

    Recommend
    lcy
     
     
    #include<stdio.h>
    int main()
    {
    long long res;
    int n,a,b;
    int t1,t2;
    int i,T;
    int iCase=0;
    scanf("%d",&T);
    while(T--)
    {
    iCase++;
    scanf("%d%d%d",&n,&a,&b);
    res=a+b;
    scanf("%d",&t1);
    for(i=1;i<n;i++)
    {
    scanf("%d",&t2);
    if((t2-t1-1)*b>2*a) res+=2*a+b;
    else res+=b*(t2-t1);
    t1=t2;
    }
    res+=a;
    printf("Case #%d: %I64d\n",iCase,res);
    }
    return 0;
    }
  • 相关阅读:
    C#中虚方法与抽象方法的区别
    关于计算同一个用户购买日期间隔查询语句
    pandas 讲数据分组之后保留前N行方法
    关于Mysql隐式转化及注意事项与cast函数运用
    Mysql 去重
    记一个pandas 分组之后.head()返回的数据问题
    Failed to introspect Class xxxx
    golang 推荐学习记录
    Java内存区域
    Struts2中采用Json返回List对象数据为空解决方案
  • 原文地址:https://www.cnblogs.com/kuangbin/p/2198939.html
Copyright © 2011-2022 走看看