n^2的算法就行,很简单的动态规划。直接上代码

  1. /*
  2. * Author : ben
  3. */
  4. #include <cstdio>
  5. #include <cstdlib>
  6. #include <cstring>
  7. #include <cmath>
  8. #include <ctime>
  9. #include <iostream>
  10. #include <algorithm>
  11. #include <queue>
  12. #include <set>
  13. #include <map>
  14. #include <stack>
  15. #include <string>
  16. #include <vector>
  17. #include <deque>
  18. #include <list>
  19. #include <functional>
  20. #include <numeric>
  21. #include <cctype>
  22. using namespace std;
  23. /*
  24. * 输入非负整数
  25. * 支持short、int、long、long long等类型(修改typec即可)。
  26. * 用法typec a = get_int();返回-1表示输入结束
  27. */
  28. typedef int typec;
  29. typec get_int() {
  30. typec res = , ch;
  31. while (!((ch = getchar()) >= '' && ch <= '')) {
  32. if (ch == EOF)
  33. return -;
  34. }
  35. res = ch - '';
  36. while ((ch = getchar()) >= '' && ch <= '')
  37. res = res * + (ch - '');
  38. return res;
  39. }
  40. //输入整数(包括负整数,故不能通过返回值判断是否输入到EOF,本函数当输入到EOF时,返回-1),用法int a = get_int2();
  41. int get_int2() {
  42. int res = , ch, flag = ;
  43. while (!((ch = getchar()) >= '' && ch <= '')) {
  44. if (ch == '-')
  45. flag = ;
  46. if (ch == EOF)
  47. return -;
  48. }
  49. res = ch - '';
  50. while ((ch = getchar()) >= '' && ch <= '')
  51. res = res * + (ch - '');
  52. if (flag == )
  53. res = -res;
  54. return res;
  55. }
  56. /**
  57. * 输入一个字符串到str中,与scanf("%s", str)类似,
  58. * 会忽略掉缓冲区中的空白字符。返回值为输入字符串
  59. * 的长度,返回-1表示输入结束。
  60. */
  61. int get_str(char *str) {
  62. char c;
  63. while ((c = getchar()) <= ' ') {
  64. if(c == EOF) {
  65. return -;
  66. }
  67. }
  68. int I = ;
  69. while (c > ' ') {
  70. str[I++] = c; c = getchar();
  71. }
  72. str[I] = ;
  73. return I;
  74. }
  75.  
  76. const int MAXN = ;
  77. int data[MAXN], f[MAXN];
  78. int N;
  79.  
  80. int main() {
  81. while ((N = get_int()) > ) {
  82. for (int i = ; i < N; i++) {
  83. data[i] = get_int2();
  84. }
  85. f[] = data[];
  86. for (int i = ; i < N; i++) {
  87. int ma = ;
  88. for (int j = i - ; j >= ; j--) {
  89. if (data[j] < data[i] && f[j] > ma) {
  90. ma = f[j];
  91. }
  92. }
  93. f[i] = ma + data[i];
  94. }
  95. printf("%d\n", *max_element(f, f + N));
  96. }
  97. return ;
  98. }

bjfu1253 最大上升子序列和的更多相关文章

  1. 用python实现最长公共子序列算法(找到所有最长公共子串)

    软件安全的一个小实验,正好复习一下LCS的写法. 实现LCS的算法和算法导论上的方式基本一致,都是先建好两个表,一个存储在(i,j)处当前最长公共子序列长度,另一个存储在(i,j)处的回溯方向. 相对 ...

  2. codevs 1576 最长上升子序列的线段树优化

    题目:codevs 1576 最长严格上升子序列 链接:http://codevs.cn/problem/1576/ 优化的地方是 1到i-1 中最大的 f[j]值,并且A[j]<A[i] .根 ...

  3. [LeetCode] Arithmetic Slices II - Subsequence 算数切片之二 - 子序列

    A sequence of numbers is called arithmetic if it consists of at least three elements and if the diff ...

  4. [LeetCode] Is Subsequence 是子序列

    Given a string s and a string t, check if s is subsequence of t. You may assume that there is only l ...

  5. [LeetCode] Wiggle Subsequence 摆动子序列

    A sequence of numbers is called a wiggle sequence if the differences between successive numbers stri ...

  6. [LeetCode] Increasing Triplet Subsequence 递增的三元子序列

    Given an unsorted array return whether an increasing subsequence of length 3 exists or not in the ar ...

  7. [LeetCode] Distinct Subsequences 不同的子序列

    Given a string S and a string T, count the number of distinct subsequences of T in S. A subsequence ...

  8. 动态规划之最长公共子序列(LCS)

    转自:http://segmentfault.com/blog/exploring/ LCS 问题描述 定义: 一个数列 S,如果分别是两个或多个已知数列的子序列,且是所有符合此条件序列中最长的,则 ...

  9. [Data Structure] LCSs——最长公共子序列和最长公共子串

    1. 什么是 LCSs? 什么是 LCSs? 好多博友看到这几个字母可能比较困惑,因为这是我自己对两个常见问题的统称,它们分别为最长公共子序列问题(Longest-Common-Subsequence ...

随机推荐

  1. android-exploitme(五):不安全的数据存储

    今天我来看看如果android将数据存储在sdcard,它的权限是什么样的 1. 打开emm软件,做一笔转账.

  2. dreamweaver cs5中提示扩展管理不可用

    下载: Extension Manager CS5.5 for Windows 安装后重启就能用了

  3. BigDecimal进行除法divide运算注意事项

     Java编程中  BigDecimal进行除法divide运算时,如果结果不整除,出现无限循环小数.则会抛出以下异常: java.lang.ArithmeticException: Non-term ...

  4. linux驱动模型<输入子系统>

    在linux中提供一种输入子系统的驱动模型,其主要是实现在input.c中. 在输入子系统这套模型中,他把驱动分层分类.首先分为上下两层,上层为input.c .下层为驱动的实现,下层分为两部分,一部 ...

  5. logback与Log4J的区别

    原文:http://blog.csdn.net/lwzcjd/article/details/5617200 Logback和log4j是非常相似的,如果你对log4j很熟悉,那对logback很快就 ...

  6. A Bug

    A Bug Time Limit:   1000MS       Memory Limit:   65535KB Submissions:   231       Accepted:    Descr ...

  7. Python应用与实践【转】

    转自:http://www.cnblogs.com/skynet/archive/2013/05/06/3063245.html 目录 1.      Python是什么? 1.1.      Pyt ...

  8. 《Linux/Unix系统编程手册》读书笔记9(文件属性)

    <Linux/Unix系统编程手册>读书笔记 目录 在Linux里,万物皆文件.所以文件系统在Linux系统占有重要的地位.本文主要介绍的是文件的属性,只是稍微提及一下文件系统,日后如果有 ...

  9. js中substr与substring的用法与区别

    substrsubstr(start,length)表示从start位置开始,截取length长度的字符串. var src="images/pic_1.png";alert(sr ...

  10. 4.cadence原理图,环境设置[原创]

    1.菜单介绍 创建工程,原理图纸 特殊点: 鼠标先点击1,,在选中1后点击2 在Tools菜单下 Annotate:自动编号 back Annotate: 回标 -- DRC规则检测 Create N ...