HDU1024(dp)

2020-10-28 11:15:48 浏览数 (1)

题意描述

AC代码

代码语言:javascript复制
#include<bits/stdc  .h>
#define x first
#define y second
#define PB push_back
#define mst(x,a) memset(x,a,sizeof(x))
#define all(a) begin(a),end(a)
#define rep(x,l,u) for(ll x=l;x<u;x  )
#define rrep(x,l,u) for(ll x=l;x>=u;x--)
#define sz(x) x.size()
#define IOS ios::sync_with_stdio(false);cin.tie(0);
using namespace std;
typedef unsigned long long ull;
typedef pair<int,int> PII;
typedef pair<char,char> PCC;
typedef long long ll;
typedef pair<ll,ll> PLL;
const int N=1e6 10;
const int M=1e6 10;
const int INF=0x3f3f3f3f;
const int MOD=1e9 7;
/*
独立思考
不要看测试样例
找性质
试着证明
写完后不盲目交
*/
int a[N],f[N],pre[N];
void solve(){
    int n,m;
    while(scanf("%d%d",&m,&n)!=EOF){
        mst(f,0);
        mst(pre,0);
        for(int i=1;i<=n;i  ) scanf("%d",&a[i]);
        int res;
        for(int i=1;i<=m;i  ){
            res=-1e9;
            for(int j=i;j<=n;j  ){
                f[j]=max(f[j-1] a[j],pre[j-1] a[j]);
                pre[j-1]=res;
                res=max(res,f[j]);
            }
        }
        printf("%dn",res);
    }
}
int main(){
    //IOS;
    //freopen("test.txt", "r", stdin);
    //freopen("test.txt", "w", stdout);
    //int t;cin>>t;
    //while(t--)
        solve();
    return 0;
}
dp

0 人点赞