計數的夢
時間限制: 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;
- }
- }
- }