uva10670

题目大意:
给出起始的工作量,和目标的工作量 还有完成一个单元需要给的钱,或者完成全部的一半需要给的钱。怎样选择才可以使雇用的钱数最少。最后按照费用从小到大排序,如果一样大的就按照名字的字典顺序排序。

思路:

如果剩下的小于M的话,就用完成一个单元的方案,题目规定的。
如果一半*A大于B的话那么就用B,小于的话就用A。

代码:

#include <iostream>
using namespace std;
#include <cstring>
#include <stdio.h>
#include <cstdlib>
#include <algorithm>
#include <cmath>


int N,M,L;

struct node {
 char name[100];
 int cost;
}n[110];

int cmp(node a,node b ) {
    if(a.cost == b.cost)
        return strcmp(a.name,b.name) < 0?1 : 0;
    else
        return a.cost < b.cost;
}

int main() {

    int cases,T = 1,k;
    scanf("%d",&cases);
    while(cases--) {
        k = 0;
        scanf("%d %d %d",&N,&M,&L);
        for(int i = 0 ; i < L; i++) {
            int sum = 0;
            int nn = N;
            char str[110],name[110];
            int A,B;
            scanf("%s",str);
            int len = strlen(str);
            for(int j = 0 ; j < len; j++)
                if(str[j] == ':' || str[j] == ',')
                    str[j] = ' ';
            sscanf(str,"%s%d%d",name,&A,&B);
            while(1) {
                int t = ceil((double)nn/2);
                if(nn - t < M) {
                    sum += (nn - M) * A;
                    break;
                }
                else {
                    if(t*A >B) {
                        sum = sum + B;
                    }
                    else
                        sum += t*A;
                    nn = nn - t;
                }
            }
            strcpy(n[k].name,name);
            n[k].cost = sum;
            k++;
        }
        sort(n,n+k,cmp);
        printf("Case %d\n",T++);
        for(int i = 0 ; i < k ; i++) 
            printf("%s %d\n",n[i].name,n[i].cost);
    }
    return 0;
}

你可能感兴趣的:(uva10670)