Codeforces Round #309 (Div. 2) B. Ohana Cleans Up

简介:

题目链接:http://codeforces.com/contest/554/problem/B

#include <iostream>
#include <string>
#include <cmath>
using namespace std;

int main()
{
    int ans=0,m;
    while(cin>>m)
    {
        string s[105];
        for(int i=0; i<m; i++)
           cin>>s[i];
        for(int i=0; i<m; i++)
        {
            int sum=0;
            for(int j=0; j<m; j++)
                if(s[i] == s[j])
                  sum++;
            ans=max(ans,sum);
        }
        cout<<ans<<endl;
    }
    return 0;
}
目录
相关文章
|
27天前
|
人工智能 测试技术 C++
Codeforces Round 962 (Div. 3)
Codeforces Round 962 (Div. 3)
|
5月前
Codeforces Round #729 (Div. 2)
【6月更文挑战第4天】在这两个编程问题中,B. Plus and Multiply 要求判断通过加法和乘法操作数组是否能形成目标数 `n`。思路是形如 `x^a + yb = n` 的表达式,如果满足则能构造。C. Strange Function 关注的是找到最小正整数 `x` 使得 `x` 不是 `i` 的因子,计算这些值的和模 `10^9+7`。对于每个 `i`,偶数时 `f(i)` 是 3,奇数时是 2,利用因子与最大公约数计算周期性求和。
30 1
Codeforces Round #186 (Div. 2)A、B、C、D、E
Ilya得到了一个礼物,可以在删掉银行账户最后和倒数第二位的数字(账户有可能是负的),也可以不做任何处理。
34 0
|
机器学习/深度学习
Codeforces Round #742 (Div. 2)
Codeforces Round #742 (Div. 2)
49 0
|
机器学习/深度学习 人工智能
Codeforces Round 889 (Div. 2)
Codeforces Round 889 (Div. 2)
154 0
|
人工智能
Codeforces Round #786 (Div. 3)(A-D)
Codeforces Round #786 (Div. 3)(A-D)
70 0
|
人工智能 索引
Codeforces Round 806 (Div. 4)
Codeforces Round 806 (Div. 4)A~G
110 0
Codeforces Round 799 (Div. 4)
Codeforces Round 799 (Div. 4)
117 0