计数的梦
时间限制: 10000ms内存限制: 1024kB
描述
Bessie 处于半梦半醒的状态。过了一会儿,她意识到她好像在数羊,不能入睡。Bessie的大脑反应灵敏,仿佛真实地看到了她数过的一个又一个数。她开始注意每一个数码:每一个数码在计数的过程中出现过多少次?
给出两个整数 M 和 N (1 <= M <= N <= 2,000,000,000 以及 N-M <= 500,000),求每一个数码出现了多少次。
例如考虑序列 129..137: 129, 130, 131, 132, 133, 134, 135, 136, 137。统计后发现:
1x0 1x5
10x1 1x6
2x2 1x7
9x3 0x8
1x4 1x9
输入
共一行,两个用空格分开的整数 M 和 N
输出
共一行,十个用空格分开的整数,分别表示数码(0..9)在序列中出现的次数。
样例输入
129 137
样例输出
1 10 2 9 1 1 1 1 0 1
/* * Dream Counting 2011-10-1 1:28PM Eric Zhou */ import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static int cnt[] = new int[10]; public static void main(String[] args) throws IOException { BufferedReader cin = new BufferedReader(new InputStreamReader(System.in)); String sn[] = cin.readLine().split(" "); int a = Integer.parseInt(sn[0]); int b = Integer.parseInt(sn[1]); int i = 0; for(i = a;i <= b;++ i){ setcnt(i); } for(i = 0;i < 10;++ i) System.out.print(cnt[i]+" "); System.out.println(); } private static void setcnt(int n) { if(n == 0) cnt[0] ++; while(n > 0){ int p = n % 10; cnt[p] ++; n /= 10; } } }