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

hdu 1087 最大递增子序列

时间:2017-10-04 14:25:57      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:double   type   vector   ios   false   txt   fine   include   cos   

#include <bits/stdc++.h>
#define PI acos(-1.0)
#define mem(a,b) memset((a),b,sizeof(a))
#define TS printf("!!!\n")
#define pb push_back
//std::ios::sync_with_stdio(false);
using namespace std;
//priority_queue<int,vector<int>,greater<int>> que;
const double EPS = 1.0e-8;
typedef pair<int, int> pairint;
typedef long long ll;
typedef unsigned long long ull;
const int  maxn = 2e5 + 100;
const int  maxm = 300;
//next_permutation
//priority_queue<int, vector<int>, greater<int>> que;
ll dp[1005];
ll num[1005];
int main()
{
        //freopen("bonuses.in", "r", stdin);
        //freopen("out.txt", "w", stdout);
        int n;
        while (cin >> n && n)
        {
                mem(dp, 0);
                ll ans = 0;
                for (int i = 1; i <= n; i++)
                {
                        cin >> num[i];
                }
                ans = dp[1] = num[1];
                for (int i = 2; i <= n; i++)
                {
                        dp[i]=num[i];
                        for (int j = 1; j < i; j++)
                        {
                                if (num[j] < num[i])
                                {
                                        dp[i] = max(dp[i], dp[j] + num[i]);
                                }
                        }
                        ans = max(ans, dp[i]);
                }
                cout << ans << endl;
        }
}

 

hdu 1087 最大递增子序列

标签:double   type   vector   ios   false   txt   fine   include   cos   

原文地址:http://www.cnblogs.com/Aragaki/p/7625324.html

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