이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
mt19937_64 rng(chrono::high_resolution_clock::now().time_since_epoch().count());
int rand(int l, int h){
return uniform_int_distribution <int> (l, h) (rng);
}
int n, m, k;
string s[5000];
int kc[5000][5000], w[5000], vt[40][5000], tong;
main(){
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
cin >> n >> m >> k;
int sum = 0;
for (int i = 1; i <= n; i++){
cin >> s[i];
s[i] = " " + s[i];
w[i] = rand(999, 1e11);
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++){
tong = 0;
for (int j = 1; j <= m; j++){
tong += vt[s[i][j] - 'A'][j] - w[i];
}
if (tong == (sum - w[i]) * (m - k)){
cout << i;
break;
}
}
}
컴파일 시 표준 에러 (stderr) 메시지
genetics.cpp:13:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
13 | main(){
| ^~~~
# | 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... |