# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
99167 | dalgerok | Rima (COCI17_rima) | C++17 | 253 ms | 22100 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
const int N = 5e5 + 5;
int n;
string s[N];
inline bool check(string &a, string &b){
int i = 0, res = 0;
while(i < min((int)a.size(), (int)b.size()) && a[i] == b[i]){
i += 1;
res += 1;
}
return res >= max((int)a.size(), (int)b.size()) - 1;
}
int main(){
ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
cin >> n;
for(int i = 1; i <= n; i++){
cin >> s[i];
reverse(s[i].begin(), s[i].end());
}
sort(s + 1, s + n + 1);
int cur = 1, ans = 1;
for(int i = 2; i <= n; i++){
if(check(s[i - 1], s[i])){
cur += 1;
}
else{
cur = 1;
}
ans = max(ans, cur);
}
cout << ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |