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

Codeforces Round #319 (Div. 2) B Modulo Sum

时间:2015-09-11 10:42:37      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

直接O(n*m)的dp也可以直接跑过。

因为上最多跑到m就终止了,因为sum[i]取余数,i = 0,1,2,3...,m,会有m+1种可能,m的余数只有m种必然有两个相同。

#include<bits/stdc++.h>
using namespace std;
const int maxn = 1e3+5;
int cnt[maxn];
bool dp[maxn][maxn];
#define Y { puts("YES"); return 0; }
int main()
{
    //freopen("in.txt","r",stdin);
    int n,m; scanf("%d%d",&n,&m);
    bool fg = false;//n>m;
    for(int i = 1; i <= n; i++){
        int x; scanf("%d",&x);
        if(!fg){
            x %= m;
            dp[x][i] = true;
            for(int k = 0; k <= m; k++){
                dp[k][i] = dp[k][i]||dp[k][i-1];
                if(dp[k][i-1]){
                    dp[(k+x)%m][i] = true;
                }
            }
            if(dp[0][i]) fg = true;
        }
    }
    if(fg) puts("YES");
    else puts("NO");
    return 0;
}

 

Codeforces Round #319 (Div. 2) B Modulo Sum

标签:

原文地址:http://www.cnblogs.com/jerryRey/p/4799989.html

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