题目

#define xhxj (Xin Hang senior sister(学姐))

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。

给定L到R区间,和一个数字\(K\)

对\([L,R]\)每一个数字,把数字当作序列,数字的每一位当作序列的元素,求\(LIS\)长度为\(k\)的数字的个数

输入格式

First a integer \(T(T<=10000)\),then \(T\) lines follow, every line has three positive integer \(L,R,K(0<L \le R < 2 ^ {63}-1,1 \le K \le 10)\).

输出格式

For each query, print "Case #t: ans" in a line, in which \(t\) is the number of the test case starting from 1 and ans is the answer.

题解

依旧是我很不熟的数位dp,直接套板子,求\(LIS\)用\(O(n log n)\)的复杂度的方法,\([L,R]\)区间差分。

重点说一下状压下的\(LIS\),由于最长长度为10,所以可以不用二分,这样求\(LIS\)的复杂度是\(O(n)\)。

注意这个存储方式不同,状态从右往左编号,依次0-9。如果在状态中为1,说明它出现过,因为是\(LIS\),所以顺序肯定是递增的,所以只需要存下来出现过什么数字,就相当于原来的dp数组。

当更新状态时,从新的pos开始,往后面遍历,遇到的第一个1就是比自己大或者等于的,将其置0,新pos位置 置1,这就是一个更新操作。

举个例子:

原状态:

0001000010

表示长度为1的上升子序列结尾元素是1,长度为2的上升子序列结尾元素是6, LIS长度为2

那么现在发现,有一个长度为2的上升子序列结尾元素为4,需要更新一下

从第4位(实际上是第5位)开始

00010[0]0010
0001[0]00010
000[1]000010

找到一个1,把它置零

000[0]000010

然后把 第4位 置1(更新)

00000[1]0010

现在更新后的状态就是

0000010010

表示长度为1的上升子序列结尾元素是1,长度为2的上升子序列结尾元素是4, LIS长度为2

LIS长度是通过1的个数算出来的,可以用lowbit计算,我使用的是内置函数__builtin_popcountll,应该也是lowbit实现的

代码

#include <bits/stdc++.h>
#define ll long long
using namespace std;
int k, number[20];
ll dp[20][1 << 10][11]; ll newStatus(ll status, ll num) {
for (int i = num; i <= 9; i++)
if (status & (1 << i)) return (status ^ (1 << i)) | (1 << num);
return status | (1 << num);
}
ll dfs(int position, ll status, bool lead, bool limit) {
if (position == 0) return __builtin_popcountll(status) == k;
if (!limit && dp[position][status][k] != -1) return dp[position][status][k];
int up = limit ? number[position] : 9;
ll ans = 0;
for (int i = 0; i <= up; i++)
ans += dfs(position - 1, (lead && i == 0) ? 0 : newStatus(status, i), lead && i == 0, limit && i == up);
if (!limit) dp[position][status][k] = ans;
return ans;
}
ll solve(ll x) {
int length = 0;
while (x) number[++length] = x % 10, x /= 10;
return dfs(length, 0ll, true, true);
} int main() {
int t;
scanf("%d", &t);
memset(dp, -1, sizeof(dp));
for (int Case = 1; Case <= t; Case++) {
long long l, r;
scanf("%lld%lld%d", &l, &r, &k);
printf("Case #%d: %lld\n", Case, solve(r) - solve(l - 1));
}
}

HDU 4352 XHXJ's LIS HDU 题解的更多相关文章

  1. HDU 4352 XHXJ's LIS HDU(数位DP)

    HDU 4352 XHXJ's LIS HDU 题目大意 给你L到R区间,和一个数字K,然后让你求L到R区间之内满足最长上升子序列长度为K的数字有多少个 solution 简洁明了的题意总是让人无从下 ...

  2. HDU 4352 XHXJ's LIS 数位dp lis

    目录 题目链接 题解 代码 题目链接 HDU 4352 XHXJ's LIS 题解 对于lis求的过程 对一个数列,都可以用nlogn的方法来的到它的一个可行lis 对这个logn的方法求解lis时用 ...

  3. 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 ...

  4. HDU 4352 - XHXJ's LIS - [数位DP][LIS问题]

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4352 Time Limit: 2000/1000 MS (Java/Others) Memory Li ...

  5. hdu 4352 XHXJ's LIS (数位dp+状态压缩)

    Description #define xhxj (Xin Hang senior sister(学姐)) If you do not know xhxj, then carefully readin ...

  6. hdu 4352 "XHXJ's LIS"(数位DP+状压DP+LIS)

    传送门 参考博文: [1]:http://www.voidcn.com/article/p-ehojgauy-ot.html 题解: 将数字num字符串化: 求[L,R]区间最长上升子序列长度为 K ...

  7. HDU 4352 XHXJ's LIS ★(数位DP)

    题意 求区间[L,R]内满足各位数构成的数列的最长上升子序列长度为K的数的个数. 思路 一开始的思路是枚举数位,最后判断LIS长度.但是这样的话需要全局数组存枚举的各位数字,同时dp数组的区间唯一性也 ...

  8. hdu 4352 XHXJ's LIS(数位dp+状压)

    Problem Description #define xhxj (Xin Hang senior sister(学姐)) If you do not know xhxj, then carefull ...

  9. HDU 4352 XHXJ's LIS

    奇妙的题. 你先得会另外一个nlogn的LIS算法.(我一直只会BIT.....) 然后维护下每个数码作为结尾出现过没有就完了. #include<iostream> #include&l ...

随机推荐

  1. js数据劫持 Object.defineProperty() 作用

    原生js Object.defineProperty() 作用 假设我们有一个obj对象,我们要给他设置一个name属性会这么做 Object.defineProperty()也可以设置对象属性 这个 ...

  2. linux安装redis-6.0.1单机和集群

    redis作为一个直接操作内存的key-value存储系统,也是一个支持数据持久化的Nosql数据库,具有非常快速的读写速度,可用于数据缓存.消息队列等. 一.单机版安装 1.下载redis 进入re ...

  3. 玩转华为物联网IoTDA服务系列三-自动售货机销售分析场景示例

    场景简介 通过收集自动售货机系统的销售数据,EI数据分析售货销量状况. 该场景主要描述的是设备可以通过MQTT协议与物联网平台进行交互,应用侧可以到物联网平台订阅设备侧变化的通知,用户可以在控制台或通 ...

  4. 【从单体架构到分布式架构】(三)请求增多,单点变集群(2):Nginx

    上一个章节,我们学习了负载均衡的理论知识,那么是不是把应用部署多套,前面挂一个负载均衡的软件或硬件就可以应对高并发了?其实还有很多问题需要考虑.比如: 1. 当一台服务器挂掉,请求如何转发到其他正常的 ...

  5. WPF入门(1)

    开始对WPF动手,从0开始一步一步深入学习 1)参考文档:msdn.<WPF编程宝典:使用C#2012和NET 4.5 第4版> 2)开发工具:Microsoft Visual Studi ...

  6. 简易的phpexcel导出柱状图

      首先得把phpexcel扩展的源码拷贝到项目文件下 下面是代码   /** 引入最重要的PHPExcel类库的入口文件 */ require(STK_PATH.'/class/stk/PHPExc ...

  7. 【JMeter_14】JMeter逻辑控制器__交替控制器<Interleave Controller>

    交替控制器<Interleave Controller> 业务逻辑: 根据被控制器触发执行次数,去依次执行控制器下的子节点<逻辑控制器.采样器>. 被触发执行可以由线程组的线程 ...

  8. ca78a_c++_字符串流在内存中的输入输出(速度快)

    /*ca78a_c++_字符串流在内存中的输入输出**字符串流:在内存中的输入输出.(在内存中进行,速度快)**文件流 :是对文件进行输入和输出.(在磁盘里面进行)istringstream(输入), ...

  9. python 函数式编程 高阶函数 装饰器

    # -*- coding:gb2312 -*- #coding=utf-8 # 高阶函数 import math def is_sqr(x): y = int(math.sqrt(x)) return ...

  10. Python3使用cookielib模块

    同时使用过python2和python3的应该都知道,好多模块在python2中能直接安装,但是到了python3中却无法安装直接使用,同样python3中的好些模块在python2中也是一样 如下: ...