# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
252786 | evpipis | Genetics (BOI18_genetics) | C++11 | 649 ms | 82936 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int len = 4105, base = 53, mod = 1e9+7;
char str[len];
int arr[len][len], col[len][4], po[len];
int add(int a, int b){
return (a+b)%mod;
}
int mul(int a, int b){
return (a*1LL*b)%mod;
}
int to(char a){
if (a == 'A') return 0;
if (a == 'C') return 1;
if (a == 'G') return 2;
return 3;
}
int main(){
int n, m, k;
scanf("%d %d %d", &n, &m, &k);
for (int i = 0; i < n; i++){
scanf("%s", &str);
for (int j = 0; j < m; j++)
arr[i][j] = to(str[j]);
}
po[0] = 1;
for (int i = 1; i < n; i++)
po[i] = mul(po[i-1], base);
for (int j = 0; j < m; j++){
for (int i = 0; i < n; i++)
col[j][arr[i][j]] = add(col[j][arr[i][j]], po[i]);
}
for (int i = 0; i < n; i++){
int all = 0, cur = 0;
for (int j = 0; j < n; j++)
if (i != j)
all = add(all, mul(k, po[j]));
for (int j = 0; j < m; j++)
for (int l = 0; l < 4; l++)
if (arr[i][j] != l)
cur = add(cur, col[j][l]);
//printf("i = %d, all = %d, cur = %d\n", i, all, cur);
if (cur == all){
printf("%d\n", i+1);
return 0;
}
}
return 0;
}
컴파일 시 표준 에러 (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... |