이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define int long long
using namespace std;
const int N = 4105;
const char letters[] = {'A', 'C', 'G', 'T'};
int n, m, k, val[N], sum, d[N][4];
char a[N][N];
main(){
ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
cin >> n >> m >> k;
for(int i = 1; i <= n; i++){
val[i] = (rand() ^ (rand() << 15));
sum += val[i];
for(int j = 1; j <= m; j++){
cin >> a[i][j];
}
}
for(int it = 0; it < 4; it++){
for(int j = 1; j <= m; j++){
for(int i = 1; i <= n; i++){
if(a[i][j] == letters[it]){
d[j][it] += val[i];
}
}
}
}
vector < int > q;
for(int i = 1; i <= n; i++){
int cur = 0;
for(int j = 1; j <= m; j++){
for(int l = 0; l < 4; l++){
if(a[i][j] != letters[l]){
cur += d[j][l];
}
}
}
if(cur == k * (sum - val[i])){
return cout << i, 0;
}
}
}
컴파일 시 표준 에러 (stderr) 메시지
genetics.cpp:15:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
main(){
^
# | 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... |