-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path2023.cpp
30 lines (30 loc) · 804 Bytes
/
2023.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Ivan Carvalho
// Solution to https://www.beecrowd.com.br/judge/problems/view/2023
#include <algorithm>
#include <cctype>
#include <iostream>
#include <vector>
#define endl '\n'
using namespace std;
struct crianca {
string normal, minusculo;
};
bool comp(crianca A, crianca B) { return A.minusculo < B.minusculo; }
vector<crianca> vetor;
int n;
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
crianca temp;
while (getline(cin, temp.normal)) {
temp.minusculo = temp.normal;
for (int j = 0; j < temp.minusculo.size(); j++) {
temp.minusculo[j] = tolower(temp.minusculo[j]);
}
vetor.push_back(temp);
}
sort(vetor.begin(), vetor.end(), comp);
cout << vetor[vetor.size() - 1].normal << endl;
return 0;
}