hdu 5327 Olympiad 简单题 2015多校联合训练赛

来源:互联网 发布:python 替换所有符号 编辑:程序博客网 时间:2024/05/22 00:41

Olympiad

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 137    Accepted Submission(s): 97


Problem Description
You are one of the competitors of the Olympiad in numbers. The problem of this year relates to beatiful numbers. One integer is called beautiful if and only if all of its digitals are different (i.e. 12345 is beautiful, 11 is not beautiful and 100 is not beautiful). Every time you are asked to count how many beautiful numbers there are in the interval [a,b] (ab). Please be fast to get the gold medal!
 

Input
The first line of the input is a single integer T (T1000), indicating the number of testcases. 

For each test case, there are two numbers a and b, as described in the statement. It is guaranteed that 1ab100000.
 

Output
For each testcase, print one line indicating the answer. 
 

Sample Input
21 101 1000
 

Sample Output
10738
 

Author
XJZX
 

Source
2015 Multi-University Training Contest 4


#include<iostream>#include<cstring>#include<algorithm>#include<cstdio>using namespace std;int s[100001];int main(){    memset(s,0,sizeof(s));    int flag[10];    for(int i = 1;i <= 100000; i++){        int j = i;        s[i] = 1;        memset(flag,0,sizeof(flag));        while(j){            flag[j%10]++;            if(flag[j%10] > 1)s[i] = 0;            j/=10;        }        s[i] += s[i-1];    }    int l,r;    int t;    scanf("%d",&t);    while(t--){        scanf("%d%d",&l,&r);        printf("%d\n",s[r]-s[l-1]);    }    return 0;}


0 0
原创粉丝点击