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 ll long long
#define lsb(x) (x & -x)
using namespace std;
const int NMAX = 4103;
char s[5 + NMAX];
inline void transpune(const vector<vector<ll>> &v, vector<vector<ll>> &ans, int n, int m) {
for(int i = 1; i <= n; i ++)
for(int j = 1; j <= m; j ++)
ans[j][i] = v[i][j];
}
inline void multiply(const vector<vector<ll>> &a, const vector<ll> &b, vector<ll> &ans, int n, int m) {
for(int i = 1; i <= n; i ++)
ans[i] = 0;
for(int i = 1; i <= n; i ++)
for(int k = 1; k <= m; k ++)
ans[i] += (a[i][k] * b[k]);
}
inline void add(vector<ll> &ans, const vector<ll> &a, int n) {
for(int i = 1; i <= n; i ++)
ans[i] += a[i];
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
//freopen("a.in", "r", stdin);
//freopen("a.out", "w", stdout);
int n, m, k;
scanf("%d%d%d\n", &n, &m, &k);
k = m - k;
vector<int> code(30, 0);
code['A' - 'A'] = 1;
code['C' - 'A'] = 2;
code['G' - 'A'] = 3;
code['T' - 'A'] = 4;
vector<vector<vector<ll>>> v(5, vector<vector<ll>> (n + 1, vector<ll> (m + 1, 0)));
for(int i = 1; i <= n; i ++) {
fgets(s, NMAX, stdin);
for(int j = 0; j < m; j ++)
v[code[s[j] - 'A']][i][j + 1] = 1;
}
srand(time(NULL));
vector<ll> hs(n + 1, 0);
for(int i = 1; i <= n; i ++)
hs[i] = rand();
vector<ll> ans(n + 1, 0);
vector<vector<ll>> t(m + 1, vector<ll> (n + 1, 0));
vector<ll> ths(m + 1, 0);
vector<ll> aux(n + 1, 0);
for(int i = 1; i <= 4; i ++) {
transpune(v[i], t, n, m);
multiply(t, hs, ths, m, n);
multiply(v[i], ths, aux, n, m);
add(ans, aux, n);
}
vector<vector<ll>> sol(n + 1, vector<ll> (n + 1, k));
for(int i = 1; i <= n; i ++)
sol[i][i] = m;
vector<ll> solhs(n + 1, 0);
multiply(sol, hs, solhs, n, n);
for(int i = 1; i <= n; i ++) {
if(solhs[i] == ans[i]) {
printf("%d", i);
return 0;
}
}
return 0;
}
Compilation message (stderr)
genetics.cpp: In function 'int main()':
genetics.cpp:37:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d%d%d\n", &n, &m, &k);
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
genetics.cpp:48:14: warning: ignoring return value of 'char* fgets(char*, int, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
fgets(s, NMAX, stdin);
~~~~~^~~~~~~~~~~~~~~~
# | 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... |