100611: [AtCoder]ABC061 B - Counting Roads

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $200$ points

Problem Statement

There are $N$ cities and $M$ roads. The $i$-th road $(1≤i≤M)$ connects two cities $a_i$ and $b_i$ $(1≤a_i,b_i≤N)$ bidirectionally. There may be more than one road that connects the same pair of two cities. For each city, how many roads are connected to the city?

Constraints

  • $2≤N,M≤50$
  • $1≤a_i,b_i≤N$
  • $a_i ≠ b_i$
  • All input values are integers.

Input

Input is given from Standard Input in the following format:

$N$ $M$
$a_1$ $b_1$
$:$  
$a_M$ $b_M$

Output

Print the answer in $N$ lines. In the $i$-th line $(1≤i≤N)$, print the number of roads connected to city $i$.


Sample Input 1

4 3
1 2
2 3
1 4

Sample Output 1

2
2
1
1
  • City $1$ is connected to the $1$-st and $3$-rd roads.
  • City $2$ is connected to the $1$-st and $2$-nd roads.
  • City $3$ is connected to the $2$-nd road.
  • City $4$ is connected to the $3$-rd road.

Sample Input 2

2 5
1 2
2 1
1 2
2 1
1 2

Sample Output 2

5
5

Sample Input 3

8 8
1 2
3 4
1 5
2 8
3 7
5 2
4 1
6 8

Sample Output 3

3
3
2
2
2
1
1
2

Input

题意翻译

题意简述: 有N个城市和M条道路。 第i条道路(1 <= i <= M)双向连接两个城市ai和bi(1 <= ai,bi <= N), 可能有多条道路连接同一对的两个城市。 对于每个城市,有多少条道路连接到它? 输入:N,M,每条道路的情况; 输出:连接到每个城市的道路条数。 样例输入: 4 3 1 2 2 3 1 4 样例输出: 2 2 1 1 样例解释: 共有4个城市,3条道路 1号——2号 2号——3号 1号——4号 有2条道路连接到1号,2条连接到2号,1条连接到3号,1条连接到4号。 注意: 所有道路都是双向的。

加入题单

算法标签: