| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 233107 | PeppaPig | Lozinke (COCI17_lozinke) | C++14 | 328 ms | 13220 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define long long long
using namespace std;
const int N = 2e4+5;
const int P = 1e9+7;
int n, ans;
char S[N][15];
map<long, int> mp;
int main() {
scanf("%d", &n);
for(int i = 1; i <= n; i++) {
scanf(" %s", S[i] + 1);
long hsh = 0;
for(int j = 1; j <= strlen(S[i] + 1); j++)
hsh = hsh * P + S[i][j];
++mp[hsh];
}
for(int i = 1; i <= n; i++) {
int len = strlen(S[i] + 1);
set<long> st;
for(int j = 1; j <= len; j++) {
long hsh = 0;
for(int k = j; k <= len; k++) {
hsh = hsh * P + S[i][k];
if(st.find(hsh) == st.end()) {
ans += mp[hsh];
if(j == 1 && k == len) --ans;
st.emplace(hsh);
}
}
}
}
printf("%d\n", ans);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
