Kia's Calculation(贪心)

http://acm.hdu.edu.cn/showproblem.php?pid=4726

大致题意:给两个长度小于10^6且相等的合法的正整数,你可以任意组合每个数中的数字,但不能有前导零。两个数相加的规则如题,相加不进位。问可以得到的A+B的最大值。

都看错题意了,一直以为数的大小是小于10^6,队友用了一个ms很高端的函数对字符串全排列,枚举求最大值。结果WA到死。其实是长度小于10^6,以后看题要细心再细心啊。。。

用数组记录每个数中每个数字的个数,每次都找从两个字符串中找和最大的,但求第一个数时要注意,不能有前导零。除了第一位,后面的每次找和最大的即可。最后别忘了去掉前导零,以及结果是0的特殊情况。

#include <stdio.h>
#include <iostream>
#include <map>
#include <stack>
#include <vector>
#include <math.h>
#include <string.h>
#include <queue>
#include <string>
#include <stdlib.h>
#include <algorithm>
#define LL long long
#define _LL __int64
#define eps 1e-8
#define PI acos(-1.0)
using namespace std;

const int maxn = 1000010;

int fir[12],sec[12];
char s1[maxn],s2[maxn],ans[maxn];

int main()
{
	int test,len;
	scanf("%d",&test);

	for(int item = 1; item <= test; item++)
	{
		scanf("%s %s",s1,s2);
		len = strlen(s1);
		memset(fir,0,sizeof(fir));
		memset(sec,0,sizeof(sec));

		if(strcmp(s1,"0") == 0)
		{
			printf("Case #%d: ",item);
			printf("%s\n",s2);
			continue;
		}

		if(strcmp(s2,"0") == 0)
		{
			printf("Case #%d: ",item);
			printf("%s\n",s1);
			continue;
		}

		for(int i = 0; i < len; i++)
		{
			fir[s1[i]-'0']++;
			sec[s2[i]-'0']++;
		}

		int cnt = 0;
		int Max = -1;
		int a,b;

		//找第一个数字,不能找前导零
		for(int i = 1; i <= 9; i++)
		{
			if(fir[i] == 0)
				continue;
			for(int j = 1; j <= 9; j++)
			{
				if(sec[j] == 0) continue;
				int t = (i+j)%10;
				if(t > Max)
				{
					Max = t;
					a = i;
					b = j;
				}
			}
		}

		ans[++cnt] = Max + '0';
		fir[a]--;
		sec[b]--;

		while(cnt < len)
		{
			Max = -1;
			for(int i = 0; i <= 9; i++)
			{
				if(fir[i] == 0) continue;
				for(int j = 0; j <= 9; j++)
				{
					if(sec[j] == 0) continue;
					int t = (i+j)%10;
					if(t > Max)
					{
						Max = t;
						a = i;
						b = j;
					}
				}
			}
			ans[++cnt] = Max + '0';
			fir[a]--;
			sec[b]--;
		}
		printf("Case #%d: ",item);
		int i;
		for(i = 1; i <= len; i++)
			if(ans[i] != '0')
				break;
		//如果是0,直接输出0
		if(i == len+1)
			printf("0\n");
		else
		{
			for( ;i <= len; i++)
				printf("%c",ans[i]);
			printf("\n");
		}
	}
	return 0;
}

Kia's Calculation(贪心),布布扣,bubuko.com

Kia's Calculation(贪心)

时间: 2024-10-25 15:03:21

Kia's Calculation(贪心)的相关文章

hdu 4726 Kia&#39;s Calculation(贪心)

题目链接:hdu 4726 Kia's Calculation 题目大意:给出两个数,然后两个数进行没有进位的加法,加数的各个位的数可以重新调整位置,但是不能有前导0的情况,要求加完之后的结果最大. 解题思路:从9开始配,直到0,但是因为9可能可以用0和9相加获得,所以一开始输出一个数,后面就可以统一操作. 0 9 9 55 55 0 #include <cstdio> #include <cstring> #include <algorithm> using name

ACM学习历程—HDU 4726 Kia&#39;s Calculation( 贪心&amp;&amp;计数排序)

DescriptionDoctor 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 12

贪心 HDOJ 4726 Kia&#39;s Calculation

题目传送门 1 /* 2 这题交给队友做,做了一个多小时,全排列,RE数组越界,赛后发现读题读错了,囧! 3 贪心:先确定最高位的数字,然后用贪心的方法,越高位数字越大 4 5 注意:1. Both A and B will have same number of digits 两个数字位数相同 6 2. which is no larger than 10 6 不是大小,而是长度不超过1e6 7 */ 8 #include <cstdio> 9 #include <iostream&g

HDU 4726 Kia&#39;s Calculation (贪心)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4726 思路:贪心,尽量先组大的数字,注意考虑前导零的情况 代码: #include <stdio.h> #include <string.h> const int N = 1000005; int t, v1[10], v2[10], ans[N]; char s1[N], s2[N]; void solve() { int n = strlen(s1); if (n == 1) {

K - Kia&#39;s Calculation(贪心)

Kia's Calculation Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) 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

HUST信心大涨迎省赛之《我要冲银牌》K——字符串——Kia&#39;s Calculation

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 1

2013 成都邀请赛

今年又要打邀请赛了,前段时间做比赛都被虐的够呛.感觉不会再爱了...所以挂了下去年的成都邀请赛的题目.发现简单题还是能切上几道的,可是难题就无能为力了.. .阿门,还是水平差得远啊.. . (ps:近期感觉状态不佳.依靠了队友神勇的发挥. .. Current Time: 2014-05-15 08:43:24 Contest Type: Public Start Time: 2014-05-14 15:10:00 Contest Status: Ended End Time: 2014-05-

HDU 3661-Assignments(贪心)

Assignments Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 1554    Accepted Submission(s): 716 Problem Description In a factory, there are N workers to finish two types of tasks (A and B). Eac

多校第九场:贪心+矩阵快速幂中间优化+线性递推&amp;线段树递推

HDU 4968 Improving the GPA 思路:贪心的搞吧!比赛的时候想了好久,然后才发现了点规律,然后乱搞1A. 因为贪心嘛!大的情况就是刚开始每个人的分数都是最大的最小值,即绩点4.0的最低分数85,然后最后一个数设为剩余的分数,然后如果小于60就从第一个分数补到这个分数来,然后最后一个分数还小于60,那就用第二个补--依次往下搞,那时我也不知道这样就搞出答案了,我还没证明这个对不对呢,哈哈. 小的情况:小的情况就是先假设每个人都是绩点最小的最大分数,即绩点2.0的最大分数69,