#P9187. [USACO23OPEN] Field Day S

[USACO23OPEN] Field Day S

题目描述

Note: The time limit for this problem in Python is 15s. Other languages have the default time limit of 2s.

Each of Farmer John's NN barns has selected a team of CC cows to participate in field day. The breed of every cow is either a Guernsey or a Holstein.

The difference between two teams is defined to be the number of positions ii (1iC1 \leq i \leq C) at which the breeds of the cows in the ii th positions differ. For every team tt from 1N1 \ldots N, please compute the maximum difference between team tt and any other team.

输入格式

The first line contains CC and NN.

The next NN lines each contain a string of length CC of Gs and Hs. Each line corresponds to a team.

输出格式

For each team, print the maximum difference.

5 3
GHGGH
GHHHH
HGHHG
5
3
5

提示

The first and third teams differ by 55. The second and third teams differ by 33.

2N1052\le N\le 10^5, 1C181\le C\le 18.

  • Inputs 2-5: C=10C = 10.
  • Inputs 6-9: All answers are at least C3C-3.
  • Inputs 10-20: No additional constraints.