博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1045. Favorite Color Stripe
阅读量:5204 次
发布时间:2019-06-13

本文共 596 字,大约阅读时间需要 1 分钟。

Classical dynamic programming:find the longest increasing subsequence.

// 1045. Favorite Color Stripe.cpp: 主项目文件。#include "stdafx.h"#include 
#include
#define max(a,b) a>b?a:b;const int N=203;int hash[N];const int arrMax=10003;int arr[arrMax];int cnt;int dp[arrMax];int longestIncreasingSubsequence(){ for(int i=1;i
max) max=dp[i]; } return max;}int main(){ int colorNum,favorateColorNum; scanf("%d%d",&colorNum,&favorateColorNum); memset(hash,0,sizeof(hash)); for(int i=0;i

转载于:https://www.cnblogs.com/cjweffort/archive/2013/03/13/3374846.html

你可能感兴趣的文章
Windows XP SP3 VC6环境下成功编译openssl-0.9.8zh
查看>>
vim入门
查看>>
SQL记录-PLSQL字符串
查看>>
PLECS 第四周
查看>>
程序员常用6 个 Python 的日期时间库
查看>>
elixir中的truth和true
查看>>
CNN- 数据预处理
查看>>
zbb20170728 oracle 查看被锁对象
查看>>
配置BeanUtils包,同时也是对导入第三包的步骤说明
查看>>
CodeForces 366C Dima and Salad
查看>>
[转]利用模式窗口:实现子、父窗体的相互传值
查看>>
git命令将本地代码提交到github
查看>>
MS SQL 合并结果集并求和 分类: SQL Server 数据库 ...
查看>>
大型网站架构演化(八)——使用NoSQL和搜索引擎
查看>>
2018牛客网暑假ACM多校训练赛(第三场)D Encrypted String Matching 多项式 FFT
查看>>
Codeforces 542E Playing on Graph 其他
查看>>
iOS10.1不能调试解决方案
查看>>
之前编写的Symfony教程已经可以观看了
查看>>
WPF中资源的引用方法
查看>>
MIME媒体类型
查看>>