DP新姿势

http://swjtuoj.cn/problem/2383/


题解

´ n 大于 3600 时,一定可以,证明:当 ( presum [ i ]- presum [j])%3600 == 0 时,成立,根据抽屉原理,当 n > 3600 时,一定有 presum [ i ] == presum [j](mod 3600)
´ n<=3600 时, dp
´ f[p][( j+a [ i ])%mod] |= f[p^1][j];
´ f[p][j] |= f[p^1][j];
新的姿势,用二级制来进行前后关系的递推!1!!!贼强!

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<math.h>
#include<iostream>
#include<algorithm>
#include<stack>
#include<queue>
#include<vector>
#include<set>
#include<map>
#include<string>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
int a[100010];
int dp[13000][2];
int main()
{
    int t;
    scanf("%d",&t);
    while(t--)
    {
        int n;
        scanf("%d",&n);
        int flag=0;
        for(int i=1;i<=n;i++)
        {
            scanf("%d",&a[i]);
            a[i]%=3600;
            if(a[i]==0)
            {
                flag=1;
            }
        }
        if(n>3600)
        {
            flag=1;
        }
        if(flag)
        {
            printf("YES\n");
            continue;
        }
        memset(dp,0,sizeof(dp));
        dp[0][0]=dp[0][1]=1;
        for(int i=1;i<=n;i++)
        {
            int tmp=i&1;
            int tmpp=tmp^1;
            for(int j=0;j<=3600;j++)
            {
                int tt=j+a[i];
                if(tt>3600)
                    tt%=3600;
                dp[tt][tmp] |=dp[j][tmpp];
                dp[j][tmp] |=dp[j][tmpp];
            }
        }
        //printf("%d %d\n",dp[3600][0],dp[3600][1]);
        if(dp[3600][0]||dp[3600][1])
        {
            printf("YES\n");
        }
        else
            printf("NO\n");
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值