标签:note 二维数组 leading 排序 tps -o UI xmlns rac
InputThe input contains multiple test cases.
For each test case, the first line contains one positive integers nn, the number of strings. (1≤n≤100000)(1≤n≤100000)
Each of the next nn lines contains a string sisi consisting of only lower case letters.(1≤|si|≤100000,∑|si|≤106)(1≤|si|≤100000,∑|si|≤106)
OutputFor each test case, output " Case #xx: yy" in one line (without quotes), where xxindicates the case number starting from 11 and yy denotes the answer of corresponding case.Sample Input
1 a 2 aa bb 3 a ba abc
Sample Output
Case #1: 25 Case #2: 1323 Case #3: 18221
题目大意:给出n行小写字母组成的字符串,字符串的每个字母有26进制表示并且字符串的第一个字符不能为0,求这n行字符串相加的和是多少??
解题思路:首先使用二维数组记录字符串的位置上的字符和一维数组第一个字符进行统计,然后用二维数组对结构体进行排序,从大到小将不是前导的字符赋值为0,从小到大对不是0的字符由25开始往0对字符进行赋值,最后对于二维数组进行计数,打印结果即可。
AC代码:
标签:note 二维数组 leading 排序 tps -o UI xmlns rac
原文地址:http://www.cnblogs.com/wang-ya-wei/p/7262466.html