Submission #1052522


Source Code Expand

#define _CRT_SECURE_NO_WARNINGS
#include <algorithm>
#include <string>
#include <iostream>
#include <functional>
#include <vector>
using namespace std;

string tmp;

bool isEqual(const pair<string, int>& element)
{
    return element.first == tmp;
}

bool sort_greator(const pair<string, int> &l, const pair<string, int> &r) {
    if (l.second == r.second) return l.first < r.first;
    return l.second > r.second;
}

int main()
{
    int N;
    vector< pair<string, int> > S;

    cin >> N;

    for (int i = 0; i < N; i++)
    {
        cin >> tmp;

        vector< pair<string, int> >::iterator
            itr = find_if(S.begin(), S.end(), isEqual);

        if (itr != S.end()) itr->second++;
        else S.push_back(make_pair(tmp, 1));
    }

    sort(S.begin(), S.end(), sort_greator);

    cout << S[0].first << endl;
    return 0;
}

Submission Info

Submission Time
Task B - 投票
User ShinjiSHIBATA
Language C++11 (GCC 4.8.1)
Score 100
Code Size 886 Byte
Status AC
Exec Time 21 ms
Memory 1048 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 3
AC × 18
Set Name Test Cases
Sample sample_01.txt, sample_02.txt, sample_03.txt
All sample_01.txt, sample_02.txt, sample_03.txt, case_01.txt, case_02.txt, case_03.txt, case_04.txt, case_05.txt, case_06.txt, case_07.txt, case_08.txt, case_09.txt, case_10.txt, case_11.txt, case_12.txt, case_13.txt, case_14.txt, case_15.txt
Case Name Status Exec Time Memory
case_01.txt AC 19 ms 1040 KB
case_02.txt AC 19 ms 1044 KB
case_03.txt AC 20 ms 1044 KB
case_04.txt AC 19 ms 1044 KB
case_05.txt AC 20 ms 1048 KB
case_06.txt AC 20 ms 1044 KB
case_07.txt AC 18 ms 1044 KB
case_08.txt AC 18 ms 1044 KB
case_09.txt AC 19 ms 1048 KB
case_10.txt AC 20 ms 1048 KB
case_11.txt AC 20 ms 1020 KB
case_12.txt AC 20 ms 1044 KB
case_13.txt AC 20 ms 1048 KB
case_14.txt AC 21 ms 1044 KB
case_15.txt AC 21 ms 1044 KB
sample_01.txt AC 18 ms 1036 KB
sample_02.txt AC 18 ms 1040 KB
sample_03.txt AC 20 ms 1036 KB