# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
853499 | Trisanu_Das | Genetics (BOI18_genetics) | C++17 | 2035 ms | 37912 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int n, m, k;
string a[5000];
bitset<4105> bs[4105];
bool check(int x){
for(int i = 1; i <= n; i++){
if(i == x) continue;
int cnt = 0;
for(int j = 0; j < m; j++) if(a[x][j] != a[i][j]) cnt++;
if(cnt != k) return false;
}
return true;
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> n >> m >> k;
for(int i = 1; i <= n; i++) cin >> a[i];
if(n <= 100){
for(int i = 1; i <= n; i++){
if(check(i)){
cout << i << '\n';
return 0;
}
}
}
for(int i = 1; i <= n; i++){
for(int j = 0; j < m; j++){
bs[i][j] = (a[i][j] == 'A');
assert(a[i][j] == 'A' || a[i][j] == 'C');
}
}
for(int i = 1;i <= n; i++){
for(int j = 1; j <= n; j++){
if(i == j) continue;
bitset<4105> tmp = (bs[i] ^ bs[j]);
if(tmp.count() != k) goto yourmom;
}
cout << i << '\n';
return 0;
yourmom:;
}
}
컴파일 시 표준 에러 (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... |