Codeforces 43A. Football Solution

 Solution in C++:

 ///La ilaha illellahu muhammadur rasulullah

///******Bismillahir-Rahmanir-Rahim******///

///AH Tonmoy

///Department of CSE,23rd batch

    ///Islamic University,Bangladesh

    1. #include <bits/stdc++.h>
    2. using namespace std;
    3. map<string,int>ms;
    4. int main()
    5. {
    6.  
    7. int n,mx=0,i;
    8. string s,ans;
    9. cin>>n;
    10. for(i=0; i<n; i++)
    11. {
    12. cin>>s;
    13. ms[s]++;
    14. if(ms[s]>mx)
    15. {
    16. mx=ms[s];
    17. ans=s;
    18. }
    19. }
    20. cout<<ans<<endl;
    21. }

    No comments

    Most View Post

    Recent post

    Codeforces Round 925 (Div. 3) 1931D. Divisible Pairs Solution

        Problem Link  :   https://codeforces.com/contest/1931/problem/D S olution in C++: /// Author : AH_Tonmoy #include < bits / stdc ++. ...

    Powered by Blogger.