# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
202907 | admin | Genetics (BOI18_genetics) | C++14 | 338 ms | 17144 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int N = 4105;
const ll P = 9949, Q = int(1e9) + 9;
int n, m, k;
char s[N][N];
ll c[5][N], p[N], r;
int main(){
cin.sync_with_stdio(false);
cin>>n>>m>>k; ll t = 1;
for(int i = 1; i <= n; i++){cin>>s[i];
for(int j = 0; j < m; j++){
s[i][j] = (s[i][j] == 'A' ? 1 : s[i][j] == 'C' ? 2 :
s[i][j] == 'G' ? 3 : 4);
c[s[i][j]][j] = (c[s[i][j]][j] + t) % Q;
c[0][j] = (c[0][j] + t) % Q;
}
r = (r + t * k) % Q;
p[i] = t;
t = t * P % Q;
}
for(int i = 1; i <= n; i++){
ll t = 0;
for(int j = 0; j < m; j++){
t = (t + c[0][j] - c[s[i][j]][j] + Q) % Q;
}
if((t + p[i] * k) % Q == r){ printf("%d\n", i); 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... |