前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >P2946 [USACO09MAR]牛飞盘队Cow Frisbee Team

P2946 [USACO09MAR]牛飞盘队Cow Frisbee Team

作者头像
attack
发布2018-04-12 12:14:17
5640
发布2018-04-12 12:14:17
举报

题目描述

After Farmer Don took up Frisbee, Farmer John wanted to join in the fun. He wants to form a Frisbee team from his N cows (1 <= N <= 2,000) conveniently numbered 1..N. The cows have been practicing flipping the discs around, and each cow i has a rating R_i (1 <= R_i <= 100,000) denoting her skill playing Frisbee. FJ can form a team by choosing one or more of his cows.

However, because FJ needs to be very selective when forming Frisbee teams, he has added an additional constraint. Since his favorite number is F (1 <= F <= 1,000), he will only accept a team if the sum of the ratings of each cow in the team is exactly divisible by F.

Help FJ find out how many different teams he can choose. Since this number can be very large, output the answer modulo 100,000,000.

Note: about 50% of the test data will have N <= 19.

农夫顿因开始玩飞盘之后,约翰也打算让奶牛们享受飞盘的乐趣.他要组建一只奶牛飞盘

队.他的N(1≤N≤2000)只奶牛,每只部有一个飞盘水准指数Ri(1≤Ri≤100000).约翰要选出1只或多于1只奶牛来参加他的飞盘队.由于约翰的幸运数字是F(1≤F≤1000),他希望所有奶牛的飞盘水准指数之和是幸运数字的倍数.

帮约翰算算一共有多少种组队方式.

输入输出格式

输入格式:

  • Line 1: Two space-separated integers: N and F
  • Lines 2..N+1: Line i+1 contains a single integer: R_i

输出格式:

  • Line 1: A single integer representing the number of teams FJ can choose, modulo 100,000,000.

输入输出样例

输入样例#1:

代码语言:javascript
复制
4 5 
1 
2 
8 
2 

输出样例#1:

代码语言:javascript
复制
3 

说明

FJ has four cows whose ratings are 1, 2, 8, and 2. He will only accept a team whose rating sum is a multiple of 5.

FJ can pair the 8 and either of the 2's (8 + 2 = 10), or he can use both 2's and the 1 (2 + 2 + 1 = 5).

dp[i][j]表示前i个数,价值和%f为j的方案数

注意是加

代码语言:javascript
复制
 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<cmath>
 5 #include<algorithm>
 6 #define lli long long int 
 7 using namespace std;
 8 const int MAXN=2001;
 9 const int maxn=0x7fffffff;
10 void read(int &n)
11 {
12     char c='+';int x=0;bool flag=0;
13     while(c<'0'||c>'9'){c=getchar();if(c=='-')flag=1;}
14     while(c>='0'&&c<='9')
15     x=(x<<1)+(x<<3)+c-48,c=getchar();
16     flag==1?n=-x:n=x;
17 }
18 int n,f;
19 int a[MAXN];
20 int dp[MAXN][MAXN];
21 int tot=0;
22 int  main()
23 {
24     read(n);read(f);
25     int mod=1e8;
26     for(int i=1;i<=n;i++)
27         read(a[i]);
28     dp[0][0]=1;
29     for(int i=1;i<=n;i++)
30     {
31         for(int j=0;j<=f;j++)
32         {
33             dp[i][j]+=dp[i-1][j];
34         //    if(((j-a[i])%f))
35             dp[i][j]+=dp[i-1][(j+a[i])%f];
36             dp[i][j]%=mod;
37         }
38     }
39     cout<<dp[n][f]%mod;    
40     return 0;
41 }
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2017-07-18 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 题目描述
  • 输入输出格式
  • 输入输出样例
  • 说明
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档