# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
532680 | sidon | Genetics (BOI18_genetics) | C++17 | 501 ms | 70060 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimize("O3", "unroll-loops")
#pragma GCC target("avx2", "popcnt", "sse4.2")
#include <bits/stdc++.h>
using namespace std;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
const int Z = 4100;
int N, M, K;
bitset<Z<<2> a[Z];
int g[100];
bool chk[Z][Z], cnt[Z][Z];
int cntAt[Z][4];
string inp[Z];
int main() {
ios::sync_with_stdio(0), cin.tie(0);
g['C'] = 1;
g['G'] = 2;
g['T'] = 3;
cin >> N >> M >> K;
int o[N];
for(int i = 0; i < N; ++i) {
cin >> inp[i];
for(int j = 0; j < M; ++j) {
a[i][g[int(inp[i][j])] * Z + j] = 1;
++cntAt[j][g[int(inp[i][j])]];
}
o[i] = i;
}
shuffle(o, o + N, rng);
for(const int &i : o) {
bool ok = 1;
int sum = 0;
for(int j = 0; j < M; ++j)
sum += N - cntAt[j][g[int(inp[i][j])]];
if(sum != (N - 1) * K) continue;
a[i].flip();
for(const int &j : o) if(i != j) {
bool c = (chk[i][j] ? cnt[i][j] : (a[i] & a[j]).count() == K);
chk[j][i] = 1;
cnt[j][i] = c;
if(!c) {
ok = 0;
break;
}
}
if(ok) {
cout << i + 1;
return 0;
}
a[i].flip();
}
}
컴파일 시 표준 에러 (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... |