HDU 4352 - XHXJ's LIS - [数位DP][LIS问题]
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4352
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
If you do
not know xhxj, then carefully reading the entire description is very
important.
As the strongest fighting force in UESTC, xhxj grew up in Jintang,
a border town of Chengdu.
Like many god cattles, xhxj has a legendary life:
2010.04, had not yet begun to learn the algorithm, xhxj won the second prize
in the university contest. And in this fall, xhxj got one gold medal and one
silver medal of regional contest. In the next year's summer, xhxj was invited to
Beijing to attend the astar onsite. A few months later, xhxj got two gold medals
and was also qualified for world's final. However, xhxj was defeated by
zhymaoiing in the competition that determined who would go to the world's
final(there is only one team for every university to send to the world's final)
.Now, xhxj is much more stronger than ever,and she will go to the dreaming
country to compete in TCO final.
As you see, xhxj always keeps a short
hair(reasons unknown), so she looks like a boy( I will not tell you she is
actually a lovely girl), wearing yellow T-shirt. When she is not talking, her
round face feels very lovely, attracting others to touch her face gently。Unlike
God Luo's, another UESTC god cattle who has cool and noble charm, xhxj is quite
approachable, lively, clever. On the other hand,xhxj is very sensitive to the
beautiful properties, "this problem has a very good properties",she always said
that after ACing a very hard problem. She often helps in finding solutions, even
though she is not good at the problems of that type.
Xhxj loves many games
such as,Dota, ocg, mahjong, Starcraft 2, Diablo 3.etc,if you can beat her in any
game above, you will get her admire and become a god cattle. She is very
concerned with her younger schoolfellows, if she saw someone on a DOTA platform,
she would say: "Why do not you go to improve your programming skill". When she
receives sincere compliments from others, she would say modestly: "Please don’t
flatter at me.(Please don't black)."As she will graduate after no more than one
year, xhxj also wants to fall in love. However, the man in her dreams has not
yet appeared, so she now prefers girls.
Another hobby of xhxj is
yy(speculation) some magical problems to discover the special properties. For
example, when she see a number, she would think whether the digits of a number
are strictly increasing. If you consider the number as a string and can get a
longest strictly increasing subsequence the length of which is equal to k, the
power of this number is k.. It is very simple to determine a single number’s
power, but is it also easy to solve this problem with the numbers within an
interval? xhxj has a little tired,she want a god cattle to help her solve this
problem,the problem is: Determine how many numbers have the power value k in
[L,R] in O(1)time.
For the first one to solve this problem,xhxj will upgrade
20 favorability rate。
every line has three positive integer
L,R,K.(0<L<=R<263-1 and 1<=K<=10).
which t is the number of the test case starting from 1 and ans is the
answer.
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
int K;
int dig[];
ll dp[][<<][]; ll getNewSta(ll sta,int num) //运用LIS问题的nlogn思想进行更新状态
{
for(int i=num;i<=;i++)
if(sta&(<<i)) return (sta^(<<i))|(<<num);
return sta|(<<num);
}
int get1cnt(ll sta) //获取状态sta中有多少个“1”
{
int cnt=;
while(sta)
{
cnt+=sta&;
sta>>=;
}
return cnt;
}
ll dfs(int pos,ll sta,bool lead,bool limit) //lead是前导零标记
{
if(pos==) return get1cnt(sta)==K; //精确到某一个数,判断其LIS的长度是否等于K
if(!limit && dp[pos][sta][K]!=-) return dp[pos][sta][K]; int up=limit?dig[pos]:;
ll ans=;
for(int i=;i<=up;i++)
ans+=dfs(pos-,(lead && i==)?:getNewSta(sta,i),lead && i==,limit && i==up); if(!limit) dp[pos][sta][K]=ans;
return ans;
}
ll solve(ll x)
{
int len=;
while(x)
{
dig[++len]=x%;
x/=;
}
return dfs(len,,,);
} int main()
{
int T;
scanf("%d",&T);
memset(dp,-,sizeof(dp));
for(int kase=;kase<=T;kase++)
{
ll L,R;
scanf("%I64d%I64d%d",&L,&R,&K);
printf("Case #%d: %I64d\n",kase,solve(R)-solve(L-));
}
}
HDU 4352 - XHXJ's LIS - [数位DP][LIS问题]的更多相关文章
- HDU 4352 XHXJ's LIS 数位dp lis
目录 题目链接 题解 代码 题目链接 HDU 4352 XHXJ's LIS 题解 对于lis求的过程 对一个数列,都可以用nlogn的方法来的到它的一个可行lis 对这个logn的方法求解lis时用 ...
- HDU 4352 XHXJ's LIS (数位DP+LIS+状态压缩)
题意:给定一个区间,让你求在这个区间里的满足LIS为 k 的数的数量. 析:数位DP,dp[i][j][k] 由于 k 最多是10,所以考虑是用状态压缩,表示 前 i 位,长度为 j,状态为 k的数量 ...
- hdu4352 XHXJ's LIS(数位DP + LIS + 状态压缩)
#define xhxj (Xin Hang senior sister(学姐)) If you do not know xhxj, then carefully reading the entire ...
- HDU 4352 XHXJ's LIS HDU(数位DP)
HDU 4352 XHXJ's LIS HDU 题目大意 给你L到R区间,和一个数字K,然后让你求L到R区间之内满足最长上升子序列长度为K的数字有多少个 solution 简洁明了的题意总是让人无从下 ...
- hdu 4352 XHXJ's LIS 数位dp+状态压缩
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4352 XHXJ's LIS Time Limit: 2000/1000 MS (Java/Others ...
- HDU 4352 XHXJ's LIS(数位dp&状态压缩)
题目链接:[kuangbin带你飞]专题十五 数位DP B - XHXJ's LIS 题意 给定区间.求出有多少个数满足最长上升子序列(将数看作字符串)的长度为k. 思路 一个数的上升子序列最大长度为 ...
- hdu 4352 "XHXJ's LIS"(数位DP+状压DP+LIS)
传送门 参考博文: [1]:http://www.voidcn.com/article/p-ehojgauy-ot.html 题解: 将数字num字符串化: 求[L,R]区间最长上升子序列长度为 K ...
- HDU.4352.XHXJ's LIS(数位DP 状压 LIS)
题目链接 \(Description\) 求\([l,r]\)中有多少个数,满足把这个数的每一位从高位到低位写下来,其LIS长度为\(k\). \(Solution\) 数位DP. 至于怎么求LIS, ...
- $HDU$ 4352 ${XHXJ}'s LIS$ 数位$dp$
正解:数位$dp$+状压$dp$ 解题报告: 传送门! 题意大概就是港,给定$[l,r]$,求区间内满足$LIS$长度为$k$的数的数量,其中$LIS$的定义并不要求连续$QwQ$ 思路还算有新意辣$ ...
随机推荐
- jquery获取元素颜色css('color')的值返回RGB
css代码如下: a, a:link, a:visited { color:#4188FB; } a:active, a:focus, a:hover { color:#FFCC00; } js代码如 ...
- Java Comparable和Comparator
Java中在进行数据排序时,Comparable和Comparator不可缺少会遇得到.普通的String.Integer等类型,已经实现了Comparable接口,而有些时候,我们须要对一些其它不存 ...
- Extended VM Disk In VirtualBox or VMware (虚拟机磁盘扩容)
First, Clean VM all snapshot, and poweroff your VM. vmdk: vmware-vdiskmanager -x 16GB myDisk.vmdk vd ...
- java中类相关注意事项
下面default类就是默认修饰符的类 1.Java中调用类中属性或方法(不管是否静态属性或方法)都要在类的方法中调用,虽然这个太基础,但今天想在类中调用静态类的静态变量,不能调用: 2.Java调用 ...
- java中的编码和编码格式问题
看来问的人和回答的人都不一定清楚什么是“编码和编码格式”,以及如何理解“java中字符串的编码”;首先明确几点: unicode是一种“编码”,所谓编码就是一个编号(数字)到字符的一种映射关系,就仅仅 ...
- windows本地hash值获取和破解详解
powershell版的procdump https://www.t00ls.net/articles-48428.html procdump procdump是微软官方提供的一个小工具, 微软官方下 ...
- C#调用DLL报“试图加载格式不正确的程序”
项目右键属性->项目设计器->生成->平台->把'默认设置(任何 CPU)'改为x86或者x64
- O2O(online to offline)营销模式
O2O营销模式又称离线商务模式,是指线上营销线上购买带动线下经营和线下消费.O2O通过打折.提供信息.服务预订等方式,把线下商店的消息推送给互联网用户,从而将他们转换为自己的线下客户,这就特别适合必须 ...
- vue再次入手(数据传递①)
准备 之前使用vue.js完成一个项目之后,对其还是充满着无限兴趣,于是不妨利用碎片时间再次研究一下这个“令人着迷”的js框架. 1.新建一个基于vue的项目,具体方法不再赘述,请看这里:http:/ ...
- JSP基本用法(二)隐含对象
一.摘要 在JSP容器中生成的Servlet类的_jspService()方法中,定义了几个对象,在编写JSP页面时我们可以使用这些隐含对象. PageContext pageContext = nu ...