A. Free Cash1000 / 哈希表
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Free Cash1000 / 哈希表相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/237/A
就是统计同一时刻最多有多少个人。
#include<bits/stdc++.h>
using namespace std;
map<string,int>mp;
int main(void)
{
int t; cin>>t;
int ans=0;
while(t--)
{
string a,b; cin>>a>>b;
string s=a+"-"+b;
mp[s]++;
ans=max(ans,mp[s]);
}
cout<<ans;
return 0;
}
以上是关于A. Free Cash1000 / 哈希表的主要内容,如果未能解决你的问题,请参考以下文章
DDM(dividend discount model)和FCF(free Cash Flow MODEL)这个两个哪个更受分析师的喜爱?