uva--10670Work Reduction +模拟

题意:

现在有n份工作需要做,老板要求必须一天之内做到只剩m份;你可以选择一些机构来帮你完成工作,他们的收费标准是:收费$A完成一份工作,收费$B完成你一半的工作(如果除2后有小数,则四舍五入)。输入L个这样机构的收费,你需要算出完成你工作每个机构最低的收费,并且从低到高排序后输出(费用相同,则按机构名的字典序排序)。

思路:

如果剩余工作完成一半后仍大于m,我们就选择完成一半的工作,然后比较一下在两种付费方式下那种费用更小,我们就采用那种。如果剩余工作完成一半以后小于m,我们就采用方式1付剩下的费用。

按照这样的思路我们算出每个机构的最低费用然后再排序输出。注意一下strcmp()函数:strcmp(a,b),如果a,b相等则返回0,如果a>b则返回1,如果a<b,则返回-1;另外使用sscanf()函数从字符串中提取数据时,注意其分隔符必须是空格。

代码如下:

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

typedef struct
{
        char name[100];
        int cost;
}P;
P p[110];

int cmp(P p1,P p2)
{
         if(p1.cost==p2.cost)
               return strcmp(p1.name,p2.name)<0? 1 : 0 ;
        return p1.cost<p2.cost;
}

int main()
{
      int i,j,k,n,m,L,t,Case=0;
      scanf("%d",&t);
      while(t--)
      {
             scanf("%d%d%d",&n,&m,&L);
             k=0;
             for(i=0;i<L;i++)
             {
                     int n1=n;
                     char str[110],name[110];
                     int A,B;
                     scanf("%s",str);
                     int len=strlen(str);
                     for(j=0;j<len;j++)
                           if(str[j]==':'||str[j]==',')
                                  str[j]=' ';
                     ///利用sscanf提取数据时,必须保证其分隔符是空格
                     sscanf(str,"%s%d%d",&name,&A,&B);
                     int sum=0;
                     while(1)
                     {
                             int t=ceil((double)n1/2);
                             if(n1-t<m)
                             {
                                    sum+=(n1-m)*A;
                                    break;
                             }
                             else
                             {
                                    if(t*A>B)
                                       sum+=B;
                                    else
                                       sum+=t*A;
                                       n1-=t;
                             }
                     }
                     strcpy(p[k].name,name);
                     p[k].cost=sum;
                     k++;
             }
             sort(p,p+k,cmp);
             printf("Case %d\n",++Case);
             for(i=0;i<k;i++)
                 printf("%s %d\n",p[i].name,p[i].cost);
      }
   return 0;
}
时间: 2024-11-03 07:42:53

uva--10670Work Reduction +模拟的相关文章

UVA 712(二叉树模拟)

L - S-Trees Time Limit:3000MS     Memory Limit:0KB     64bit IO Format:%lld & %llu Submit Status Appoint description:  System Crawler  (2014-04-01) Description  S-Trees  A Strange Tree (S-tree) over the variable set  is a binary tree representing a B

UVA 246 - 10-20-30 (模拟+STL)

UVA 246 - 10-20-30 题目链接 题意:给52张的扑克堆,先从左往右发7张牌,之后连续不断从左往右发7张牌,如果有牌堆形成了以下3种情况(按顺序判断): 1.头两张+尾一张和为10或20或30 2.头一张+尾两张和为10或20或30 3.尾三张和为10或20或30 就把这三张牌拿走,放到总牌堆底(这步要不断执行直到不再满足条件或牌堆没了) 如果有一个牌堆因为这个操作被取完了,那么以后将不在这个位置发牌. 如果最后7个牌堆都可以消掉,那么赢,总牌堆用完,那么输,否则平(即不断循环)

UVa 11988 (数组模拟链表) Broken Keyboard (a.k.a. Beiju Text)

题意: 模拟一个文本编辑器,可以输入字母数字下划线,如果遇到'['则认为是Home键,如果是']'则认作End键. 问最终屏幕上显示的结果是什么字符串. 分析: 如果在数组用大量的移动字符必然很耗时.所以next数组表示显示屏中s[i]右边的字符编号,变量cur模拟光标,即当前光标位于s[cur]的右边. 变量last记录显示屏最后一个字符的下标. 我理解的连接的情况应该是这样子的: 1 //#define LOCAL 2 #include <cstdio> 3 #include <cs

UVa 514 Rails(模拟栈)

题意  n辆火车按顺序依次进站  判断给定的出战顺序是否可能 用数组模拟模拟栈代表车站  车依次进站  每当栈顶火车序号与当前要出站的b[cur] 相等时 就让栈顶元素出栈  即top-- #include<cstdio> #include<cstring> using namespace std; const int N = 2000; int b[N], c[N]; int main() { int l, cur, top; while(scanf("%d"

UVa 1589 Xiangqi(模拟 HDU4121)

题意  给你一个黑方被将军的象棋残局  判断红方是否已经把黑方将死 模拟题  注意细节就行了  看黑方的将是否四个方向都不能走 #include<cstdio> #include<cstring> using namespace std; const int N = 12; char brd[N][N]; int dx[] = { -1, 1, 0, 0}, dy[] = {0, 0, -1, 1}; int hx[] = { -2, -1, -2, -1, 1, 2, 1, 2}

UVa 11988 数组模拟链表

题目:在一个没有显示器的电脑上输入一个字符串,键盘坏掉了,会随机的出现home,和end按键, 字符串中'['代表home键(句首),']'代表end键(句尾),问最后输出的字符串的格式. 分析:模拟屏幕操作,移动光标,模拟缓冲区输出操作. 说明:数组模拟链表操作,跟随链表操作,形象化模拟. 1 // UVa11988 Broken Keyboard 2 // Rujia Liu 3 #include<cstdio> 4 #include<cstring> 5 const int

UVA 1589:Xiangqi (模拟 Grade D)

题目: 象棋,黑棋只有将,红棋有帅车马炮.问是否死将. 思路: 对方将四个方向走一步,看看会不会被吃. 代码: 很难看……WA了很多发,还越界等等. #include <cstdio> #include <cstring> #include <cstdlib> char graph[13][13]; int go[4][2] = {{1,0},{0,1},{-1,0},{0,-1}}; bool inBlackPalace(int x, int y) { return

UVa 1611 (排序 模拟) Crane

假设数字1~i-1已经全部归位,则第i到第n个数为无序区间. 如果i在无序区间的前半段,那么直接将i换到第i个位置上. 否则先将i换到无序区间的前半段,再将i归位.这样每个数最多操作两次即可归位. 1 #include <bits/stdc++.h> 2 using namespace std; 3 4 const int maxn = 10000 + 10; 5 int a[maxn]; 6 vector<pair<int, int> > ans; 7 8 void

UVA - 1589 Xiangqi (模拟)

Xiangqi Problem Description Xiangqi is one of the most popular two-player board games in China. The game represents a battle between two armies with the goal of capturing the enemy's "general" piece. In this problem, you are given a situation of