# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1095278 | vjudge1 | Genetics (BOI18_genetics) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#ifndef ONLINE_JUDGE
#include "/Users/quocbaonguyentran/Documents/VOI25/template/debug.cpp"
#else
#define debug(...) ;
#endif
using namespace std;
#define endl "\n"
#define ll long long
mt19937 rng(chrono::high_resolution_clock().now().time_since_epoch().count());
#define rand(a, b) uniform_int_distribution<ll>(a, b)(rng)
ll n, m, k;
string s[4105];
int kc[4105][4105];
ll w[4105];
ll vt[30][4105];
char v[] = {'A', 'C', 'G', 'T'};
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> n >> m >> k;
ll sum = 0;
for (int i = 1; i <= n; i++)
{
cin >> s[i];
s[i] = " " + s[i];
w[i] = rand(1000, 1e12);
sum += w[i];
for (int j = 1; j <= m; j++)
{
vt[s[i][j] - 'A'][j] += w[i];
}
}
for (int i = 1; i <= n; i++)
{
ll ss = 0;
for (int j = 1; j <= m; j++)
{
ss += vt[s[i][j] - 'A'][j] - w[i];
}
if (ss == (sum - w[i]) * (m - k))
{
cout << i;
break;
}
}
}