# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
198864 | ZwariowanyMarcin | Parametriziran (COCI19_parametriziran) | C++14 | 458 ms | 1888 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#define fi first
#define se second
#define mp make_pair
#define ss(x) (int) x.size()
#define pb push_back
#define LL long long
#define ld long double
#define cat(x) cerr << #x << " = " << x << endl
#define FOR(i, j, n) for(int i = j; i <= n; ++i)
#define boost cin.tie(0), ios_base::sync_with_stdio(0);
using namespace std;
const int N = 50005;
bitset <N> b[6][26];
bitset <N> a, d;
int n, m;
char s[N][10];
int main() {
scanf ("%d%d", &n, &m);
for (int i = 0; i < n; ++i) {
scanf ("%s", s[i]);
for (int j = 0; j < m; ++j) {
if (s[i][j] == '?')
for (int c = 0; c < 26; ++c)
b[j][c][i] = 1;
else
b[j][s[i][j] - 'a'][i] = 1;
}
}
LL ans = 0;
for (int i = 0; i < n; ++i) d[i] = i;
for (int i = 0; i < n; ++i) {
d[i] = 0;
a.set();
a = (a & d);
for (int j = 0; j < m; ++j)
if (s[i][j] != '?')
a = (a & b[j][s[i][j] -'a']);
ans += a.count();
}
printf ("%lld", ans);
return 0;
}
Compilation message (stderr)
# | 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... |
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |