bjfu1253 最大上升子序列和
n^2的算法就行,很简单的动态规划。直接上代码
- /*
- * Author : ben
- */
- #include <cstdio>
- #include <cstdlib>
- #include <cstring>
- #include <cmath>
- #include <ctime>
- #include <iostream>
- #include <algorithm>
- #include <queue>
- #include <set>
- #include <map>
- #include <stack>
- #include <string>
- #include <vector>
- #include <deque>
- #include <list>
- #include <functional>
- #include <numeric>
- #include <cctype>
- using namespace std;
- /*
- * 输入非负整数
- * 支持short、int、long、long long等类型(修改typec即可)。
- * 用法typec a = get_int();返回-1表示输入结束
- */
- typedef int typec;
- typec get_int() {
- typec res = , ch;
- while (!((ch = getchar()) >= '' && ch <= '')) {
- if (ch == EOF)
- return -;
- }
- res = ch - '';
- while ((ch = getchar()) >= '' && ch <= '')
- res = res * + (ch - '');
- return res;
- }
- //输入整数(包括负整数,故不能通过返回值判断是否输入到EOF,本函数当输入到EOF时,返回-1),用法int a = get_int2();
- int get_int2() {
- int res = , ch, flag = ;
- while (!((ch = getchar()) >= '' && ch <= '')) {
- if (ch == '-')
- flag = ;
- if (ch == EOF)
- return -;
- }
- res = ch - '';
- while ((ch = getchar()) >= '' && ch <= '')
- res = res * + (ch - '');
- if (flag == )
- res = -res;
- return res;
- }
- /**
- * 输入一个字符串到str中,与scanf("%s", str)类似,
- * 会忽略掉缓冲区中的空白字符。返回值为输入字符串
- * 的长度,返回-1表示输入结束。
- */
- int get_str(char *str) {
- char c;
- while ((c = getchar()) <= ' ') {
- if(c == EOF) {
- return -;
- }
- }
- int I = ;
- while (c > ' ') {
- str[I++] = c; c = getchar();
- }
- str[I] = ;
- return I;
- }
- const int MAXN = ;
- int data[MAXN], f[MAXN];
- int N;
- int main() {
- while ((N = get_int()) > ) {
- for (int i = ; i < N; i++) {
- data[i] = get_int2();
- }
- f[] = data[];
- for (int i = ; i < N; i++) {
- int ma = ;
- for (int j = i - ; j >= ; j--) {
- if (data[j] < data[i] && f[j] > ma) {
- ma = f[j];
- }
- }
- f[i] = ma + data[i];
- }
- printf("%d\n", *max_element(f, f + N));
- }
- return ;
- }
bjfu1253 最大上升子序列和的更多相关文章
- 用python实现最长公共子序列算法(找到所有最长公共子串)
软件安全的一个小实验,正好复习一下LCS的写法. 实现LCS的算法和算法导论上的方式基本一致,都是先建好两个表,一个存储在(i,j)处当前最长公共子序列长度,另一个存储在(i,j)处的回溯方向. 相对 ...
- codevs 1576 最长上升子序列的线段树优化
题目:codevs 1576 最长严格上升子序列 链接:http://codevs.cn/problem/1576/ 优化的地方是 1到i-1 中最大的 f[j]值,并且A[j]<A[i] .根 ...
- [LeetCode] Arithmetic Slices II - Subsequence 算数切片之二 - 子序列
A sequence of numbers is called arithmetic if it consists of at least three elements and if the diff ...
- [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 ...
- [LeetCode] Wiggle Subsequence 摆动子序列
A sequence of numbers is called a wiggle sequence if the differences between successive numbers stri ...
- [LeetCode] Increasing Triplet Subsequence 递增的三元子序列
Given an unsorted array return whether an increasing subsequence of length 3 exists or not in the ar ...
- [LeetCode] Distinct Subsequences 不同的子序列
Given a string S and a string T, count the number of distinct subsequences of T in S. A subsequence ...
- 动态规划之最长公共子序列(LCS)
转自:http://segmentfault.com/blog/exploring/ LCS 问题描述 定义: 一个数列 S,如果分别是两个或多个已知数列的子序列,且是所有符合此条件序列中最长的,则 ...
- [Data Structure] LCSs——最长公共子序列和最长公共子串
1. 什么是 LCSs? 什么是 LCSs? 好多博友看到这几个字母可能比较困惑,因为这是我自己对两个常见问题的统称,它们分别为最长公共子序列问题(Longest-Common-Subsequence ...
随机推荐
- android-exploitme(五):不安全的数据存储
今天我来看看如果android将数据存储在sdcard,它的权限是什么样的 1. 打开emm软件,做一笔转账.
- dreamweaver cs5中提示扩展管理不可用
下载: Extension Manager CS5.5 for Windows 安装后重启就能用了
- BigDecimal进行除法divide运算注意事项
Java编程中 BigDecimal进行除法divide运算时,如果结果不整除,出现无限循环小数.则会抛出以下异常: java.lang.ArithmeticException: Non-term ...
- linux驱动模型<输入子系统>
在linux中提供一种输入子系统的驱动模型,其主要是实现在input.c中. 在输入子系统这套模型中,他把驱动分层分类.首先分为上下两层,上层为input.c .下层为驱动的实现,下层分为两部分,一部 ...
- logback与Log4J的区别
原文:http://blog.csdn.net/lwzcjd/article/details/5617200 Logback和log4j是非常相似的,如果你对log4j很熟悉,那对logback很快就 ...
- A Bug
A Bug Time Limit: 1000MS Memory Limit: 65535KB Submissions: 231 Accepted: Descr ...
- Python应用与实践【转】
转自:http://www.cnblogs.com/skynet/archive/2013/05/06/3063245.html 目录 1. Python是什么? 1.1. Pyt ...
- 《Linux/Unix系统编程手册》读书笔记9(文件属性)
<Linux/Unix系统编程手册>读书笔记 目录 在Linux里,万物皆文件.所以文件系统在Linux系统占有重要的地位.本文主要介绍的是文件的属性,只是稍微提及一下文件系统,日后如果有 ...
- js中substr与substring的用法与区别
substrsubstr(start,length)表示从start位置开始,截取length长度的字符串. var src="images/pic_1.png";alert(sr ...
- 4.cadence原理图,环境设置[原创]
1.菜单介绍 创建工程,原理图纸 特殊点: 鼠标先点击1,,在选中1后点击2 在Tools菜单下 Annotate:自动编号 back Annotate: 回标 -- DRC规则检测 Create N ...