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

Posted ---学习ing---

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SPOJ:PATHETIC STRINGS(分配问题&贪心)相关的知识,希望对你有一定的参考价值。

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(分配问题&贪心)的主要内容,如果未能解决你的问题,请参考以下文章

将 strings.xml 资源值分配给 MainActivity 中的字符串失败

java 问题:String类和 Bufstring类的区别是啥?谢谢

String的内存分配与拼接操作

String的内存分配与拼接操作

Java千百问_07JVM架构(003)_内存分配有哪些策略

在 C++ 中快速将基础对象的所有成员分配给派生对象