Gym - 102501B

水题
题意
给你n个字符串,要你求其中有没有一个字符串重复的个数严格大于n/2
思路:只要用map将字符串映射出来就好了

#include
#define IOS ios::sync_with_stdio(false),cin.tie(0)
using namespace std;
typedef long long LL;

map a;
string s,ans;
int main()
{
#ifdef local
    freopen("1.txt","r",stdin);
#endif // local
    IOS;
    int n,maxn=0;
    cin>>n;
    for(int i=0; i>s;
      //  cout<n-maxn)
        cout<

你可能感兴趣的:(Gym - 102501B)