HDU 5327 Olympiad(2015多校联合)

题目链接

戳我

题目大意

计算区间 $L R$内每个数的 每位 是由不同的数 构成的 个数
即 一个区间内的每个数 它的个位,十位…..是不同的数字构成的个数

样例解释

解题思路

简单题. 但是暴力枚举肯定会超时的.但是比赛的时候数据比较弱,可以水过去…..
可以先预处理每一个前缀有多少个即可

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
//Author LJH
//www.cnblogs.com/tenlee
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cctype>
#include <cmath>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <map>
#define clc(a, b) memset(a, b, sizeof(a))
using namespace std;

const int inf = 0x3f;
const int INF = 0x3f3f3f3f;
const int maxn = 1e5+5;
int a[maxn], b[maxn], ha[20];

bool judge(int n)
{

clc(ha, 0);
int x, y;
while(n)
{
x = n % 10;
n = n / 10;
if(ha[x]) return false;
else ha[x] = 1;
}
return true;
}
void Init()
{

clc(b, 0);
a[0] = 1;
for(int i = 1; i < maxn; i++)
{
a[i] = a[i-1];
if(judge(i))
{
b[i] = 1;
a[i]++;
}
}
}

int main()
{

Init();
int T;
int x, y, ans;
scanf("%d", &T);
while(T--)
{
scanf("%d %d", &x, &y);
ans = a[y] - a[x];
if(b[x])
{
ans++;
//puts("hehe");
}
printf("%d\n", ans);
}
}