【链接】 我是链接,点我呀:)

【题意】

让你求出只由3个非0数字组成的数字在[li,ri]这个区间里面有多少个.

【题解】

只由3个非0数字组成的数字在1~10^18中只有60W个
dfs处理出来之后排序做个二分查找一下区间里有多少个就好。

【代码】

  1. import java.io.*;
  2. import java.util.*;
  3. public class Main {
  4. static InputReader in;
  5. static PrintWriter out;
  6. public static void main(String[] args) throws IOException{
  7. //InputStream ins = new FileInputStream("E:\\rush.txt");
  8. InputStream ins = System.in;
  9. in = new InputReader(ins);
  10. out = new PrintWriter(System.out);
  11. //code start from here
  12. new Task().solve(in, out);
  13. out.close();
  14. }
  15. static int N = 700000;
  16. static class Task{
  17. TreeSet<Long> myset = new TreeSet<Long>();
  18. long a[] = new long[N+10];
  19. int T,n;
  20. long l,r;
  21. void dfs(long cur,int num,int dep) {
  22. if (dep==18) {
  23. if (cur>0) myset.add(cur);
  24. return;
  25. }
  26. if (num<3) {
  27. for (int j = 1;j <= 9;j++)
  28. dfs(cur*10+j,num+1,dep+1);
  29. }
  30. dfs(cur*10,num,dep+1);
  31. }
  32. int get_least_gore(long x) {
  33. int l = 1,r = n,temp = 1;
  34. while (l<=r) {
  35. int mid = (l+r)/2;
  36. if (a[mid]>=x) {
  37. temp = mid;
  38. r = mid - 1;
  39. }else l = mid + 1;
  40. }
  41. return temp;
  42. }
  43. int get_last_lore(long x) {
  44. int l = 1,r = n,temp = 1;
  45. while (l<=r) {
  46. int mid = (l+r)/2;
  47. if (a[mid]<=x) {
  48. temp = mid;
  49. l = mid + 1;
  50. }else r = mid - 1;
  51. }
  52. return temp;
  53. }
  54. public void solve(InputReader in,PrintWriter out) {
  55. myset.add((long)1e18);
  56. dfs(0,0,0);
  57. n = myset.size();
  58. Iterator<Long> it = myset.iterator();
  59. int j = 1;
  60. while (it.hasNext()) {
  61. a[j] = it.next();
  62. j++;
  63. }
  64. T = in.nextInt();
  65. for (int ii = 1;ii <= T;ii++) {
  66. l = in.nextLong();r = in.nextLong();
  67. int idx1 = get_least_gore(l);
  68. int idx2 = get_last_lore(r);
  69. out.println(idx2-idx1+1);
  70. }
  71. }
  72. }
  73. static class InputReader{
  74. public BufferedReader br;
  75. public StringTokenizer tokenizer;
  76. public InputReader(InputStream ins) {
  77. br = new BufferedReader(new InputStreamReader(ins));
  78. tokenizer = null;
  79. }
  80. public String next(){
  81. while (tokenizer==null || !tokenizer.hasMoreTokens()) {
  82. try {
  83. tokenizer = new StringTokenizer(br.readLine());
  84. }catch(IOException e) {
  85. throw new RuntimeException(e);
  86. }
  87. }
  88. return tokenizer.nextToken();
  89. }
  90. public int nextInt() {
  91. return Integer.parseInt(next());
  92. }
  93. public long nextLong() {
  94. return Long.parseLong(next());
  95. }
  96. }
  97. }

【Codeforces 1036C】Classy Numbers的更多相关文章

  1. 【Codeforces 300C】Beautiful Numbers

    [链接] 我是链接,点我呀:) [题意] 让你找到长度为n的数字 这个数字只由a或者b组成 且这n个数码的和也是由a或者b组成的 求出满足这样要求的数字的个数 [题解] 枚举答案数字中b的个数为y,那 ...

  2. 【codeforces 415D】Mashmokh and ACM(普通dp)

    [codeforces 415D]Mashmokh and ACM 题意:美丽数列定义:对于数列中的每一个i都满足:arr[i+1]%arr[i]==0 输入n,k(1<=n,k<=200 ...

  3. 【66.47%】【codeforces 556B】Case of Fake Numbers

    time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...

  4. 【codeforces 746E】Numbers Exchange

    [题目链接]:http://codeforces.com/problemset/problem/746/E [题意] 你有n张卡片,上面写着不同的数字; 然后另外一个人有m张上面写着不同的数字的卡片: ...

  5. 【codeforces 367C】Sereja and the Arrangement of Numbers

    [题目链接]:http://codeforces.com/problemset/problem/367/C [题意] 我们称一个数列a[N]美丽; 当且仅当,数列中出现的每一对数字都有相邻的. 给你n ...

  6. 【19.77%】【codeforces 570D】Tree Requests

    time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...

  7. 【35.37%】【codeforces 556C】Case of Matryoshkas

    time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...

  8. 【34.57%】【codeforces 557D】Vitaly and Cycle

    time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...

  9. 【55.70%】【codeforces 557A】Ilya and Diplomas

    time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...

随机推荐

  1. LVS集群体系和调度算法

    集群体系和调度算法 LVS集群体系架构 1)使用LVS架设的服务器集群系统有三个部分组成: 最前端的负载均衡层,用Load Balancer表示, 中间的服务器群组层,用Server Array表示, ...

  2. git 删除本地仓库

    更新: 2017/06/27 修改格式,备注mac下的命令没测试过   windows: rm .git/ mac: sudo rm -rf .git/ 没验证

  3. Kali linux 2016.2(Rolling)安装之后的常用配置

    前言 使用默认的Kali Linux设置来学习是可以的,但是我们通常要修改系统的一些基本设置,来最大化使用Kali平台的功能. 以下内容 网络的基础知识 使用图形用户界面来配置网卡 使用命令行来配置网 ...

  4. js操作Attribute,控件的各种属性.....maxlength,style...

    Attribute是属性的意思,文章仅对部分兼容IE和FF的Attribute相关的介绍. attributes:获取一个属性作为对象 getAttribute:获取某一个属性的值setAttribu ...

  5. SQL函数类的操作,增加,查询

    数据库连接: 表的创建: 创建连接对象,命令对象类: 添加函数: 查询函数类: List<>集合,里面专门放对象 函数主体: 查询: foreach只能修改,不能添加删除

  6. java excel poi导入 过滤空行的方法 判断是否是空行

    private boolean isRowEmpty(Row row){ for (int c = row.getFirstCellNum(); c < row.getLastCellNum() ...

  7. [ NOI 2002 ] 银河英雄传说

    \(\\\) Description 有 \(n\) 列战场,每一列一开始只有一个战舰,编号就是对应的战场编号. 有 \(m\) 次操作: \(M_{i,j}\) :把 \(i\) 所在的一整列接在 ...

  8. poj1923 Fourier's Lines

    思路: 记忆化搜索. n条直线的交点方案数 =(n-r)条平行线与r条直线交叉的交点数+r条直线本身的交点方案 =(n-r)*r+r条直线之间本身的交点方案数(0<r<=n) 于是可以枚举 ...

  9. python自动化--语言基础四模块、文件读写、异常

    模块1.什么是模块?可以理解为一个py文件其实就是一个模块.比如xiami.py就是一个模块,想引入使用就在代码里写import xiami即可2.模块首先从当前目录查询,如果没有再按path顺序逐一 ...

  10. 腾讯云 LNMP+wordpress 搭建个人网站

    折腾了好几个小时才弄好(php nginx略知一二),其实一点都不难! 以此记录一下,献给首次搭建的朋友们!! 1)准备工作:(因为个人用的ubuntu16.04 LTS系统  所以这是debian版 ...