• B


    Description

     


    G

    Commando War

    Input: Standard Input

    Output: Standard Output

    “Waiting for orders we held in the wood, word from the front never came

    By evening the sound of the gunfire was miles away

    Ah softly we moved through the shadows, slip away through the trees

    Crossing their lines in the mists in the fields on our hands and our knees

    And all that I ever, was able to see

    The fire in the air, glowing red, silhouetting the smoke on the breeze”

    There is a war and it doesn't look very promising for your country. Now it's time to act. You have a commando squad at your disposal and planning an ambush on an important enemy camp located nearby. You have soldiers in your squad. In your master-plan, every single soldier has a unique responsibility and you don't want any of your soldier to know the plan for other soldiers so that everyone can focus on his task only. In order to enforce this, you brief every individual soldier about his tasks separately and just before sending him to the battlefield. You know that every single soldier needs a certain amount of time to execute his job. You also know very clearly how much time you need to brief every single soldier. Being anxious to finish the total operation as soon as possible, you need to find an order of briefing your soldiers that will minimize the time necessary for all the soldiers to complete their tasks. You may assume that, no soldier has a plan that depends on the tasks of his fellows. In other words, once a soldier  begins a task, he can finish it without the necessity of pausing in between.

    Input

    There will be multiple test cases in the input file. Every test case starts with an integer N (1<=N<=1000), denoting the number of soldiers. Each of the following N lines describe a soldier with two integers B (1<=B<=10000) J (1<=J<=10000)seconds are needed to brief the soldier while completing his job needs seconds. The end of input will be denoted by a case with N =0 . This case should not be processed.

    Output

    For each test case, print a line in the format, “Case X: Y”, where X is the case number & Y is the total number of seconds counted from the start of your first briefing till the completion of all jobs.

     

    Sample Input                                               Output for Sample Input

    3

    2 5

    3 2

    2 1

    3

    3 3

    4 4

    5 5

    0

    Case 1: 8

    Case 2: 15

     

     

     
     
    自然是一道贪心算法的题目,首先有两组数据,自然要判断对那个进行排序。
    经过实验就可以知道是对执行时间进行排序(由大到小),然后进行累加,求最大值。
    注意
    2
    1 9
    1 2
    这种情况。
     1 #include<stdio.h>
     2 int h=1;
     3 int a[10010],b[10010];
     4 void paixu(int b[],int a[],int n)
     5 {
     6     int i=0,j=n-1,t=b[0],m=a[0];
     7     if(n>1)
     8     {
     9         while(i<j)
    10         {
    11             for(; i<j; j--)
    12                 if(b[j]>t)
    13                 {
    14                     b[i]=b[j];
    15                     a[i]=a[j];
    16                     i++;
    17                     break;
    18                 }
    19             for(; i<j; i++)
    20             {
    21                 if(b[i]<t)
    22                 {
    23                     b[j]=b[i];
    24                     a[j]=a[i];
    25                     j--;
    26                     break;
    27                 }
    28             }
    29         }
    30         b[i]=t;
    31         a[i]=m;
    32         paixu(b,a,i);
    33         paixu(b+i+1,a+i+1,n-i-1);
    34     }
    35 }
    36 void shuchu(int a[],int b[],int n)
    37 {
    38     int i,m=a[0],t,max=a[0]+b[0];
    39     for(i=1; i<n; i++)
    40     {
    41         m=m+a[i];
    42         t=m+b[i];
    43         if(t>max)max=t;
    44     }
    45     printf("Case %d: %d
    ",h++,max);
    46 }
    47 int main()
    48 {
    49     int n,i;
    50     while(scanf("%d",&n)&&n)
    51     {
    52 
    53         for(i=0; i<n; i++)
    54             scanf("%d%d",&a[i],&b[i]);
    55         paixu(b,a,n);
    56         shuchu(a,b,n);
    57 
    58     }
    59     return 0;
    60 }
  • 相关阅读:
    教会他人,让其成为你的接棒人
    2015年看的52部电影计划
    我的2015年读书计划,每两周读完一本书!
    拯救你的电脑之文件命名规范与目录规划
    出租WiFi到底靠不靠谱?
    使用观察者模式更新Fragment的内容
    android静默安装和智能安装(转)
    Android拨打电话不弹出系统拨号界面总结
    Android通过AIDL和反射调用系统拨打电话和挂断电话
    Android设为系统默认的短信应用
  • 原文地址:https://www.cnblogs.com/dongq/p/4167813.html
Copyright © 2020-2023  润新知