博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 4726 Kia's Calculation 贪心
阅读量:6700 次
发布时间:2019-06-25

本文共 3205 字,大约阅读时间需要 10 分钟。

Kia's Calculation

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 4054    Accepted Submission(s): 825

Problem Description
Doctor Ghee is teaching Kia how to calculate the sum of two integers. But Kia is so careless and alway forget to carry a number when the sum of two digits exceeds 9. For example, when she calculates 4567+5789, she will get 9246, and for 1234+9876, she will get 0. Ghee is angry about this, and makes a hard problem for her to solve: Now Kia has two integers A and B, she can shuffle the digits in each number as she like, but leading zeros are not allowed. That is to say, for A = 11024, she can rearrange the number as 10124, or 41102, or many other, but 02411 is not allowed. After she shuffles A and B, she will add them together, in her own way. And what will be the maximum possible sum of A "+" B ?
 

 

Input
The rst line has a number T (T <= 25) , indicating the number of test cases. For each test case there are two lines. First line has the number A, and the second line has the number B. Both A and B will have same number of digits, which is no larger than 10
6, and without leading zeros.
 

 

Output
For test case X, output "Case #X: " first, then output the maximum possible sum without leading zeros.
 

 

Sample Input
1
5958 3036
 

 

Sample Output
Case #1: 8984
 

 

Source
 
 
#include
#include
#include
#include
#define ls (u<<1)#define rs (u<<1|1)#define maxn 1000005#define ll long longusing namespace std;#define max(a,b) (a)>(b)?(a):(b)#define min(a,b) (a)<(b)?(a):(b)int a[10],b[10];char s1[maxn],s2[maxn],res[maxn];int main(){ int T; scanf("%d",&T); int t = 0; while(T--){ for(int i=0;i<10;i++){ a[i]=0,b[i]=0; } scanf("%s%s",s1,s2); int len = strlen(s1); for(int i=0;i
tmp){ tmp = (i+j)%10; m=i,n=j; } } } } } res[0] = '0' + tmp; //第一位找到 if(res[0] == '0'){
//如果第一位是0,说明后面也只能是0,直接输出0就可以了 printf("Case #%d: 0\n",++t); continue; } a[m]--,b[n]--; //两个串相应的数字个数减少一个 int p = 1; while(1){ int m,n,cnt=0; tmp = -1; for(int i=0;i<10;i++){ if(!a[i]){ cnt++; } } if(cnt == 10){ break; } for(int i=0;i<10;i++){ if(a[i]){ for(int j=9;j>=0;j--){ if(b[j]){ int tmpt = (i+j)%10; if(tmpt>tmp){ tmp = tmpt; m=i,n=j; } } } } } int tm = min(a[m],b[n]); //假设a,b组成一个值a,b这两个数都有多个,则直接减完,这样可以节省时间 a[m] -= tm,b[n] -= tm;//每次找到之后直接让一个个数或者两个个数都变为0 for(int k=p;k

 

 

转载于:https://www.cnblogs.com/l609929321/p/7281522.html

你可能感兴趣的文章
delphi 新版内存表 FDMemTable
查看>>
轻量级web富文本框——wangEditor使用手册(1)——基本应用 demo
查看>>
Java在的时候,类定义HashSet初始化方法
查看>>
利用JMX统计远程JAVA进程的CPU和Memory---jVM managerment API
查看>>
android弹出时间选择框
查看>>
移动终端处理器构成和基带芯片概述
查看>>
Android 动态加载 (一) 态加载机制 案例一
查看>>
我的angularjs源码学习之旅1——初识angularjs
查看>>
Oracle存储过程中异步调用的实际操作步骤
查看>>
Atitti.java android反编译解决方案-----虚拟机方案
查看>>
Java 装饰模式 (Decorator)
查看>>
JAVA虚拟机垃圾回收算法原理
查看>>
PHP开启curl_init
查看>>
动态规划法求背包问题
查看>>
【maven + hibernate(注解) +spring +springMVC】 使用maven搭建项目
查看>>
Mybatis-mapper-xml-基础
查看>>
如何在Visual Studio VS中定义多项目模板
查看>>
tcpip学习
查看>>
yii2权限控制rbac之菜单menu最详细教程
查看>>
国内四大炒股软件APP 全面技术解析
查看>>