이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ZAZO ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
using namespace std;
// i have maximum 65 chuncks , each chuck will have 64 bits (elements)
unsigned long long bits[4100][65],bits2[4100][65];
int n , m , k ;
bool check(int x , int y)
{
int cnt=0;
for(int i = 0 ; i < 65 ; i++)
cnt += __builtin_popcountll((bits[x][i]^bits[y][i])|(bits2[x][i]^bits2[y][i]));
if(cnt == k) return true;
return false;
}
int32_t main() {
ZAZO
cin >> n >> m >> k;
for(int i = 0 ; i < n ; i++)
{
for(int j = 0 ; j < m ; j ++)
{
char s; cin >> s;
// get the bit you want by checking mod
unsigned long long pos = ((unsigned long long) 1<<j%64);
// set the bit to one in the specific place in the specific chunk;
if(s == 'C') bits[i][j/64] |= pos;
else if(s == 'T') bits[i][j/64] |= pos , bits2[i][j/64] |= pos;
else if(s == 'G') bits2[i][j/64] |= pos;
}
}
int ans[n]={0};
for(int i = 0 ; i < n ; i ++)
{
if(ans[i]==-1) continue;
for(int j = 0 ; j < n ; j ++)
{
if(ans[j]==-1) continue;
if(i==j) continue;
bool ok = check(i , j);
if(!ok)
{
ans[i]=-1;
ans[j]=-1;
break;
}
}
}
for(int i = 0 ; i < n ; i++)
{
if(ans[i]!=-1){
cout<<i+1;
return 0;
}
}
}
# | 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... |