2000: [USACO 2023 US Open Contest Silver] Problem 2. Field Day
文件提交:无需freopen
内存限制:256 MB
时间限制:2.000 S
评测方式:普通裁判
命题人:
提交:1
解决:1
题目描述
**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 barns () has selected a team of 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 () at which the breeds of the cows in the th positions differ. For every team from , please compute the maximum difference between team
and any other team.输入
The first line contains and .
The next lines each contain a string of length 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 . The second and third teams differ by .
SCORING:
- Inputs 2-5:
- Inputs 6-9: All answers are at least .
- Inputs 10-20: No additional constraints.