Online JudgeProblem SetAuthorsOnline ContestsUser
Web Board
Home Page
F.A.Qs
Statistical Charts
Problems
Submit Problem
Online Status
Prob.ID:
Register
Update your info
Authors ranklist
Current Contest
Past Contests
Scheduled Contests
Award Contest
User ID:
Password:
  Register

其实不用排序只需要将字符串转换为整数然后用STL,再转为字符串输出就行了

Posted by Eli_love at 2010-03-11 15:29:46 on Problem 1256
for(i=0;i<len;i++)
		{
			if(s[i]>='a' && s[i]<='z')
				a[(s[i]-'a')*2+1]++;
			else a[(s[i]-'A')*2]++;
		}
		int cnt=0;
		for(i=0;i<53;i++)
		{
			while(a[i]--) b[cnt++]=i;
		}

Followed by:

Post your reply here:
User ID:
Password:
Title:

Content:

Home Page   Go Back  To top


All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator