码迷,mamicode.com
首页 > 其他好文 > 详细

SPOJ:PATHETIC STRINGS(分配问题&贪心)

时间:2018-04-29 15:26:55      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:scan   lin   nta   贪心   form   %s   any   +=   操作   

Problem statement:

 

A string is said to be “PATHETIC” if all the characters in it are repeated the same number of times. You are given a string of length n, what is the minimum number of changes required to make a string “PATHETIC”. The string has only lower case letters and you can change any letter to any other letter.

 

Input Format 
The first line contains an integer T, the number of test cases. This is followed by T test cases each containing 1 line: 
Each testcase consists of a string composed of lowercase letters.


Output Format 

For each testcase, print in a new line the minimum number of changes required.

 

Constraints 
1 ≤ T ≤ 1370 
1 ≤ n ≤ 1991 

 

Sample Input :

2

bbaccaaa

ccaacb

 

Output:

2

1

题意:给定字符串,问这样才能让字符串里的每个字符的次数相同,每次可以把任意的字符变成任意的字符,求最小操作次数。

思路:把字符想成箱子,那么最多有26个箱子,枚举箱子数X,然后不难知道相应的变化数,更新最小值:

           当前箱子大于X,那么从大到小排序,把X后面的几个箱子的货物搬出来,如果前面X个箱子的物体大于N/X,那么多的要搬出来。然后把搬出来的转移到前面X个里面小于N/X的地方。

           当前箱子小于等于X,那么大的搬出来给小的。

#include<cmath>
#include<vector>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
int num[27];
char c[2010];
bool cmp(int a,int b){
    return a>b;
}
int main()
{
    int T,L,i,j,ans,tot;
    scanf("%d",&T);
    while(T--){
        scanf("%s",c+1); 
        L=strlen(c+1); ans=L-1;
        for(i=1;i<=26;i++) num[i]=0;
        for(i=1;i<=L;i++) num[c[i]-a+1]++;
        sort(num+1,num+26+1,cmp);
        for(tot=1;tot<=26;tot++) if(num[tot]==0)  break; tot--;
        for(i=1;i<=26;i++){
            if(L%i==0){
                int tmp=0;
                if(tot>i){
                    for(j=1;j<=i;j++) if(num[j]>L/i) tmp+=num[j]-L/i; 
                    for(j=tot;j>i;j--) tmp+=num[j];
                } 
                else{
                    for(j=1;j<=tot;j++)  if(num[j]>L/i) tmp+=num[j]-L/i;
                }
                if(tmp<ans) ans=tmp; 
            }
        }
        printf("%d\n",ans);
    }
    return 0;
}
 

 

SPOJ:PATHETIC STRINGS(分配问题&贪心)

标签:scan   lin   nta   贪心   form   %s   any   +=   操作   

原文地址:https://www.cnblogs.com/hua-dong/p/8971006.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!