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

bzoj1630/2023 [Usaco2007 Demo]Ant Counting

时间:2017-06-03 18:18:41      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:open   closed   com   c++   algo   space   ati   iostream   蚂蚁   

传送门:http://www.lydsy.com/JudgeOnline/problem.php?id=1630

http://www.lydsy.com/JudgeOnline/problem.php?id=2023

【题解】

直接dp,f[i,j]表示第i个种族选了j只蚂蚁的方案数,转移枚举这个种族选择的方案。

然后可以前缀和+滚动数组

技术分享
# include <stdio.h>
# include <string.h>
# include <iostream>
# include <algorithm>
// # include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef long double ld;
typedef unsigned long long ull;
const int M = 5e5 + 10;
const int mod = 1e6;

# define RG register
# define ST static

int m, n, A, B;
int a[M], bel[M], sum[M];
int f[2][100010], s[2][100010];

int main() {
    cin >> m >> n >> A >> B;
    for (int i=1; i<=n; ++i) {
        scanf("%d", &bel[i]);
        a[bel[i]] ++;
    }
    int pre = 0, cur = 1;
    f[pre][0] = 1;
    for (int i=0; i<=n; ++i) s[pre][i] = 1;
    for (int i=1; i<=m; ++i) {
        for (int j=0; j<=n; ++j) {
            if(a[i] < j) f[cur][j] = (s[pre][j] - s[pre][j-a[i]-1] + mod) % mod;
            else f[cur][j] = s[pre][j];
            if(j == 0) s[cur][j] = f[cur][j];
            else s[cur][j] = (s[cur][j-1] + f[cur][j]) % mod;
        }
        swap(pre, cur);
    }
    int ans = (s[pre][B] - s[pre][A-1] + mod) % mod;
    cout << ans << endl; 
    return 0;
}
View Code

bzoj1630/2023 [Usaco2007 Demo]Ant Counting

标签:open   closed   com   c++   algo   space   ati   iostream   蚂蚁   

原文地址:http://www.cnblogs.com/galaxies/p/bzoj1630.html

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