이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimize ("O3")
#include <bits/stdc++.h>
using namespace std;
#define int int64_t
#define F(X) for(X = 0; X < B; X++)
const int B = 62, LIM = 8, M = 998244353;
int get(char c) {
if(c < 60) return c - 48;
return c - (c < 95 ? 55 : 61);
}
int n, a[LIM][B][B], b[LIM][B][B][B], res;
map<string, bool> inp;
int i, j, k, l, x;
#define c(i, j, k, l) ((b[L][i][j][l] * b[L][j][k][l]) % M)
int32_t main() {
cin >> n;
while(n--) {
string s; cin >> s;
i = size(s);
if(inp[s]) continue;
string t = s;
reverse(begin(t), end(t));
inp[s] = inp[t] = 1;
int z = get(s[0]), y = get(end(s)[-1]);
++a[i-3][z][y];
if(s != t) ++a[i-3][y][z];
}
for(int L = 0; L < LIM; L++) {
F(i) F(j) F(k) F(x)
b[L][i][j][k] += a[L][i][x] * a[L][j][x] * a[L][k][x];
F(i) F(j) F(k)
b[L][i][j][k] %= M;
F(i) F(j) F(k) F(l)
res += (c(i, j, k, l) * c(l, k, j, i)) % M;
}
cout << res % M;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |