# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
864405 | iskhakkutbilim | Genetics (BOI18_genetics) | C++17 | 1693 ms | 104276 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ff first
#define ss second
#define all(a) a.begin(), a.end()
const int N = 4100;
bitset<N+1> bits[N+1];
int used[N+1][N+1];
main(){
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
memset(used, -1, sizeof(used));
int n, m, k; cin >> n >> m >> k;
vector<string> a(n);
for(auto &x : a) cin >> x;
if(n <= 100 && m <= 100){
for(int i = 0;i < n; i++){
int ok = 0;
for(int j = 0;j < n; j++){
if(i == j) continue;
int c = 0;
for(int idx = 0; idx < m; idx++){
c+= a[i][idx] != a[j][idx];
}
if(c != k){
ok = 1;
break;
}
}
if(!ok){
cout << i+1;
return 0;
}
}
}else{
for(int i = 0;i < n; i++){
for(int j = 0;j < m; j++){
if(a[i][j] == 'A'){
bits[i][j] = 1;
}else{
bits[i][j] = 0;
}
}
}
for(int i = 0;i < n; i++){
int ok = 0;
for(int j = 0;j < n; j++){
if(i == j) continue;
int c = -1;
if(used[i][j] != -1) c = used[i][j];
else if(used[j][i] != -1) c = used[j][i];
else c = (bits[i] ^ bits[j]).count();
used[i][j] = used[j][i] = c;
if(c != k){
ok = 1;
break;
}
}
if(!ok){
cout << 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... |