2015暑假多校联合---Zero Escape(变化的01背包)

题目链接

http://acm.hust.edu.cn/vjudge/contest/130883#problem/C

Problem Description
Zero Escape, is a visual novel adventure video game directed by Kotaro Uchikoshi (you may hear about ever17?) and developed by Chunsoft.

Stilwell is enjoying the first chapter of this series, and in this chapter digital root is an important factor. 

This is the definition of digital root on Wikipedia:
The digital root of a non-negative integer is the single digit value obtained by an iterative process of summing digits, on each iteration using the result from the previous iteration to compute a digit sum. The process continues until a single-digit number is reached.
For example, the digital root of 65536 is 7, because 6+5+5+3+6=25 and 2+5=7.

In the game, every player has a special identifier. Maybe two players have the same identifier, but they are different players. If a group of players want to get into a door numbered X(1X9), the digital root of their identifier sum must be X.
For example, players {1,2,6} can get into the door 9, but players {2,3,3} can't.

There is two doors, numbered A and B. Maybe A=B, but they are two different door.
And there is n players, everyone must get into one of these two doors. Some players will get into the door A, and others will get into the door B.
For example: 
players are {1,2,6}A=9B=1
There is only one way to distribute the players: all players get into the door 9. Because there is no player to get into the door 1, the digital root limit of this door will be ignored.

Given the identifier of every player, please calculate how many kinds of methods are there, mod 258280327.
 
Input
The first line of the input contains a single number T, the number of test cases.
For each test case, the first line contains three integers nA and B.
Next line contains n integers idi, describing the identifier of every player.
T100n105n1061A,B,idi9
 
Output
For each test case, output a single integer in a single line, the number of ways that these n players can get into these two doors.
 
Sample Input
4
3 9 1
1 2 6
3 9 1
2 3 3
5 2 3
1 1 1 1 1
9 9 9
1 2 3 4 5 6 7 8 9
 
Sample Output
1
0
10
60
 
Author
SXYZ
 
Source
 
Recommend
wange2014

题意:输入n,A,B   表示有n个数,一部分放入A中,剩余部分放入B中,或者全放入A中、B中,A中数得满足 和的每一位相加 再对和的每一位求和......直至最后变成一位数,而这个数必须和A相等,B同样如此,求有多少种分配方案?

思路:上述对A中和B中数和的运算  等价于 和对9取余,令A中的和为suma,B中和为sumb,suma+sumb==sum  则suma%9==A   sumb%9==B  所以 如果(suma+sumb)%9==(A+B)%9  且  suma%9==A   那么必有sumb%9==B   所以问题得到简化,先判断(suma+sumb)%9==(A+B)%9  是否成立,若成立,才有可能把n个数分成两部分满足上述条件。    那么在满足的条件下,我们只需算取数放入A中满足条件的方案数,可以用01背包实现;

代码如下:

#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cstring>
using namespace std;
const int mod=258280327;
int a[100005];
int dp[100005][10];

int main()
{
    int T,n,A,B;
    cin>>T;
    while(T--)
    {
        int sum=0;
        scanf("%d%d%d",&n,&A,&B);
        memset(dp,0,sizeof(dp));
        for(int i=1;i<=n;i++)
        {
            scanf("%d",&a[i]);
            sum+=a[i];
        }
        sum%=9;
        int res=0;
        if(sum==B%9) res++;
        if(sum==(A+B)%9)
        {
            dp[0][0]=1;
            for(int i=1;i<=n;i++)
            {
                for(int j=0;j<=9;j++)
                {
                    if(j>=a[i]) dp[i][j]=dp[i-1][j]+dp[i-1][j-a[i]];
                    else        dp[i][j]=dp[i-1][j]+dp[i-1][j+9-a[i]];
                    dp[i][j]%=mod;
                }
            }
            printf("%d
",(dp[n][A]+res)%mod);
        }
        else  printf("%d
",(sum==A%9)+res);
    }
    return 0;
}
原文地址:https://www.cnblogs.com/chen9510/p/5827136.html