0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-27 17:56:28 +00:00

UVA11362 Phone List

R58060854
This commit is contained in:
Baoshuo Ren 2021-09-15 18:18:52 +08:00 committed by Baoshuo Ren
parent 279c499ca5
commit 18c4e40ebf
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

View File

@ -0,0 +1,27 @@
#include <bits/stdc++.h>
using namespace std;
int t, n;
bool flag;
string s[10005];
int main() {
cin >> t;
while (t--) {
flag = false;
cin >> n;
for (int i = 0; i < n; i++) {
cin >> s[i];
}
sort(s, s + n);
for (int i = 0; i < n - 1; i++) {
if (s[i + 1].substr(0, s[i].size()) == s[i]) {
flag = true;
break;
}
}
cout << (flag ? "NO" : "YES") << endl;
}
return 0;
}