Description

一个A和两个B一共可以组成三种字符串:"ABB","BAB","BBA".
给定若干字母和它们相应的个数,计算一共可以组成多少个不同的字符串.
 

Input

每组测试数据分两行,第一行为n(1<=n<=26),表示不同字母的个数,第二行为n个数A1,A2,...,An(1<=Ai<=12),表示每种字母的个数.测试数据以n=0为结束.
 

Output

对于每一组测试数据,输出一个m,表示一共有多少种字符串.
 

Sample Input

2
1 2
3
2 2 2
0
 

Sample Output

3
90

可以轻易推出公式 :(n1+n2+n3+...nn)!/(n1!*n2!*...*nn!);

因为15!还在long long的范围之内,可以先定义一个数组f[15]保存1~15的阶乘,接着就是将(n1+n2+n3+...nn)!计算出来并存到数组内,接着就是大数除法了(相当于一个大数除一个小数)。

#include <iostream>
#include <algorithm>
#include <cstring>
#include <cstdio>
#include <cctype>
#include <cstdlib>
#include <stack>
#include <cmath>
#include <string>
#include <queue> using namespace std;
#define SIZE 30
typedef long long ll ;
int d[SIZE] ;
int ans[] , f[];
void multiply(int c){
ans[] = ans[] = ;
for(int i = ; i <= c ; ++i){
int r = ;
for(int j = ; j <= ans[] ; ++j){
ans[j] *= i ;
ans[j] += r ;
r = ans[j]/ ;
ans[j] %= ;
}
if(r != ){
while(r){
ans[ans[]+] += r% ;
ans[] = ans[]+ ;
r /= ;
}
}
}
} void divide(int n){
for(int i = ; i < n ; ++i){
if(d[i] == ) continue ;
ll r = ;
for(int j = ans[] ; j > ; --j){
r = r* + ans[j] ;
ans[j] = (int)(r/f[d[i]]) ;
r %= f[d[i]] ;
}
int j = ans[] ;
while(!ans[j--]) ;
ans[] = j+ ;
}
} int main(){
int n ;
f[] = f[] = ;
for(int i = ; i < ; ++i)
f[i] = f[i-]*i ;
while(scanf("%d",&n) && n){
int c = ;
memset(ans,,sizeof(ans)) ;
for(int i = ; i < n ; ++i){
scanf("%d",&d[i]) ;
c += d[i] ;
}
multiply(c) ;
divide(n) ;
for(int i = ans[] ; i > ; --i)
printf("%d",ans[i]) ;
puts("") ;
}
return ;
}

2017-3-4再做这道题,用了Java~~哈哈

import java.math.BigInteger;

/**
*
* @author Asimple
*
*/ import java.util.Scanner;
public class Main{
static Scanner sc = new Scanner(System.in);
public static void main(String[] args) {
int n;
while( sc.hasNext() ) {
n = sc.nextInt();
if( n == 0 ) break;
int sum = 0;
BigInteger a = BigInteger.valueOf(1);
for(int i=0; i<n; i++) {
int num = sc.nextInt();
sum += num;
a = a.multiply(dd(num));
}
BigInteger b = dd(sum);
b = b.divide(a);
System.out.println(b.toString());
}
} public static BigInteger dd(int x) {
BigInteger a = BigInteger.valueOf(1) ;
for(int i=2; i<=x; i++) {
a = a.multiply(BigInteger.valueOf(i));
}
return a;
}
}

ACM题目————字串数的更多相关文章

  1. 字串数_hdu_1261(大数极致).java

    字串数 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submis ...

  2. HDOJ 1261 字串数

    JAVA大数.... 字串数 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) T ...

  3. HDU 1261 字串数(排列组合)

    字串数 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submiss ...

  4. 题解报告:hdu 1261 字串数

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1261 Problem Description 一个A和两个B一共可以组成三种字符串:"ABB ...

  5. hdu 1261 字串数

    解题思路:ACM紫书 第十章 P319 有重复元素的全排列 答案: 所有数的和的阶乘 除以 每个数阶乘的乘积 因为给定 (26*12)! 会爆掉(long long),这里用java 的BigInte ...

  6. 【字符串】BZOJ上面几个AC自动机求最为字串出现次数的题目

    (一下只供自己复习用,目的是对比这几个题,所以写得不详细.需要细节的可以参考其他博主) [BZOJ3172:单词] 题目: 某人读论文,一篇论文是由许多(N)单词组成.但他发现一个单词会在论文中出现很 ...

  7. hdu 4333 扩展kmp+kmp重复字串去重

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4333 关于kmp next数组求最短重复字串问题请看:http://www.cnblogs.com/z ...

  8. Day07 - Ruby比一比:Symbol符号与String字串

    前情提要: 第六天我们透过Ruby代码练习public,protected和privatemethod时,发现冒号在前面的参数,:mydraft,:myspace,这些就是符号Symbol.在今天,我 ...

  9. POJ - 2774~POJ - 3415 后缀数组求解公共字串问题

    POJ - 2774: 题意: 求解A,B串的最长公共字串 (摘自罗穗骞的国家集训队论文): 算法分析: 字符串的任何一个子串都是这个字符串的某个后缀的前缀. 求 A 和 B 的最长 公共子串等价于求 ...

随机推荐

  1. Java 反射的基本应用

    package com.lf.testreflection; import java.lang.reflect.Field; import java.lang.reflect.Method; impo ...

  2. 安装和删除 Alcatraz 插件

    在终端下输入如下命令来安装Alcatraz: curl -fsSL https://raw.github.com/supermarin/Alcatraz/master/Scripts/install. ...

  3. cocos2dx 3.x(捕鱼达人炮台角度换算)

    // // GameScence.hpp // NotesDamo // // Created by apple on 16/10/23. // // #ifndef GameScence_hpp # ...

  4. mantis 安装问题

    1. 邮件 修改 config_defaults_inc.php $g_administrator_email = 'mantis@pooy.net'; $g_webmaster_email = 'm ...

  5. [转] JVM 调优系列 & 高并发Java系列

    1.JVM调优总结(1):一些概念:http://www.importnew.com/18694.html 2.JVM调优总结(2):基本垃圾回收算法:http://www.importnew.com ...

  6. js break continue

    for 循环从 1 到 10 迭代变量 i.在循环主体中,if 语句将(使用取模运算符)检查 i 的值是否能被 5 整除.如果能被 5 整除,将执行 break 语句.alert 显示 "4 ...

  7. merge into 的用法

    已创建 1 行.   SQL> commit;   ----不带where子句 SQL>  merge into merge1   2     using merge2   3   on ...

  8. [记录]firefox繁体转换成简体的油猴脚本

    // ==UserScript== // @name 繁简转换 // @include *.* // @author yecao // @version 0.1 // @include * // @e ...

  9. Java如何对ArrayList里的元素排序

  10. bug管理规范

    资源来自:http://wenku.baidu.com/view/ae55b3b565ce05087632132b.html