-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path2087.cpp
39 lines (36 loc) · 795 Bytes
/
2087.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
31
32
33
34
35
36
37
38
39
#include <iostream>
#include <vector>
#include <cstring>
#include <algorithm>
#include <cmath>
using namespace std;
int main()
{
string txt;
int n;
bool flag = false;
vector<string> conjunto;
cin>>n;
while(n){
while(n--){
cin >> txt;
conjunto.push_back(txt);
}
sort(conjunto.begin(), conjunto.end());
for(int i = 0; i < conjunto.size() - 1; i++)
{
if(conjunto[i] == conjunto[i+1].substr(0, conjunto[i].size()))
{
cout << "Conjunto Ruim" << endl;
flag = true;
break;
}
}
if(!flag)
cout << "Conjunto Bom" << endl;
flag = false;
conjunto.clear();
cin>>n;
}
return 0;
}