Given one line of N consecutive natural numbers starts from 0 called A[N], and the target is to give another line of N numbers called B[N], and B[i] is the times that A[i] appears in B[N].For example, when N=10.the first line of number is:. Then, as the description above, the second line of numbers should be:. Which B[0]=6 means, A[0] appears 6 times in B,B[1]=2 means, A[1] appears 2 times in the second line, ... , and so on.Your task is to give the second line of number B, for each given A.
Given one line of N consecutive natural numbers starts from 0 called A[N], and the target is to give another line of N numbers called B[N], and B[i] is the times that A[i] appears in B[N]. For example, when N=10.the first line of number is: A: 0 1 2 3 4 5 6 7 8 9 Then, as the description above, the second line of numbers should be: B: 6 2 1 0 0 0 1 0 0 0 Which B[0]=6 means, A[0] appears 6 times in B, B[1]=2 means, A[1] appears 2 times in the second line, ... , and so on. Your task is to give the second line of number B, for each given A.