博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【DP】UVA 10131 Is Bigger Smarter? LIS
阅读量:4882 次
发布时间:2019-06-11

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

排序后dp

写代码的速度还不够快。。。

#include 
#include
#include
#include
#include
#include
#include
using namespace std;#include
#include
#include
#include
#include
#include
#define cler(arr, val) memset(arr, val, sizeof(arr))#define IN freopen ("in.txt" , "r" , stdin);#define OUT freopen ("out.txt" , "w" , stdout);typedef long long LL;const int MAXN = 111;//点数的最大值const int MAXM = 20006;//边数的最大值const int INF = 11521204;const int mod=1000000007;struct node{ int x,y,num;}a[1999];bool cmp1(node h,node w){ if(h.x==w.x) return h.y>w.y; return h.x
a[j].x&&a[i].y
dp[i]) { dp[i]=dp[j]+1; out[i]=j; } } } int ans=0,p=0; for(int i=1;i
ans) ans=dp[i],p=i; } printf("%d\n",ans); print(p); return 0;}

转载于:https://www.cnblogs.com/kewowlo/p/4002551.html

你可能感兴趣的文章
spring boot + velocity中文乱码解决方式
查看>>
读罢泪两行,人生成长必须面对的10个残酷事实
查看>>
ASP 32位程序运行与64位问题:ADODB.Connection 错误 '800a0ea9' 未指定提供程序,也没有指派的默认提供程序。...
查看>>
xcode-git笔记
查看>>
TCP和UDP的优缺点及区别
查看>>
MATLAB消除曲线毛刺Outlier Detection and Removal [hampel]
查看>>
MySQL DATE_SUB() 函数
查看>>
在SSH框架下按条件分页查询
查看>>
jquery选择器
查看>>
【javascript学习——《javascript高级程序设计》笔记】DOM操作
查看>>
高效的SQL语句翻页代码
查看>>
NPAPI插件开发详细记录:用VS2010开发NPAPI插件步骤
查看>>
linux下Makefile全解(二)
查看>>
XMLHTTP.readyState的五种状态
查看>>
百度外卖 前端面试题
查看>>
record for json formate site
查看>>
查询树形的根节点
查看>>
HDU 1272 小希的迷宫
查看>>
hdu 5412 CRB and Queries(整体二分)
查看>>
CentOS如何安装linux桌面?
查看>>