제출 #1129023

#제출 시각아이디문제언어결과실행 시간메모리
1129023LudisseyGenetics (BOI18_genetics)C++20
0 / 100
366 ms55172 KiB
#include <bits/stdc++.h> #define int long long #define sz(a) (int)a.size() #define all(a) a.begin(), a.end() #define rall(a) a.rbegin(), a.rend() using namespace std; signed main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int n,m,k; cin >> n >> m >> k; int blocks=(m/128)+1; vector<vector<__int128>> a_c(n,vector<__int128>(blocks+1)); vector<vector<__int128>> g_t(n,vector<__int128>(blocks+1)); for (int i = 0; i < n; i++) { int j=0; int bl=0; while(j<m){ char c; cin >> c; if(c=='A') a_c[i][bl]+=((__int128)1<<j); if(c=='T') g_t[i][bl]+=((__int128)1<<j); j++; if(j%128==0) bl++; } } vector<vector<int>> dist(n,vector<int>(n,0)); vector<vector<int>> dist2(n,vector<int>(n,0)); vector<vector<int>> dist3(n,vector<int>(n,0)); for (int i = 0; i < n; i++) { for (int j = i+1; j < n; j++) { for (int _k = 0; _k < blocks; _k++) { dist[i][j]+=__builtin_popcount(a_c[i][_k]^a_c[j][_k]); dist2[i][j]+=__builtin_popcount(g_t[i][_k]^g_t[j][_k]); dist3[i][j]+=__builtin_popcount(g_t[i][_k]&a_c[j][_k]); dist3[i][j]+=__builtin_popcount(a_c[i][_k]&g_t[j][_k]); } dist[j][i]=dist[i][j]; dist2[j][i]=dist2[i][j]; dist3[j][i]=dist3[i][j]; } } for (int i = 0; i < n; i++) { bool b=true; for (int j = 0; j < n; j++) { if(i==j) continue; if((dist[i][j]+dist2[i][j])-dist3[i][j]!=k) { b=false; break; } } if(b==true){ cout << i+1 << "\n"; break; } } return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...