이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
#define int int64_t
#define pii pair<int, int>
#define X first
#define Y second
#define all(x) (x).begin(),(x).end()
#define lb lower_bound
#define ub upper_bound
using namespace std;
const int inf = 1e18;
const int mod = 1e9+7;
const int prime = 7177;
void p(auto A){
for(auto e : A)cout << e << ' ';
cout << '\n';
}
void solve(){
int n, m, k; cin >> n >> m >> k;
vector<string>A(n);
for(int i = 0; i< n; i++)cin >> A[i];
int base = 1;
vector<array<int, 4>>cnt(m, {0, 0, 0, 0});
auto f = [](char c){
if(c=='A')return 0;
if(c=='C')return 1;
if(c=='G')return 2;
return 3;
};
int ans = 0;
for(auto S : A){
ans = (ans + (k*base)%mod)%mod;
for(int i = 0; i< m; i++){
for(int j = 0; j< 4; j++)if(f(S[i])!=j)cnt[i][j] = (cnt[i][j] + base) % mod;
}
base = base * prime % mod;
}
base=1;
for(int i = 0; i< n; i++){
int cur = 0;
for(int j = 0; j< m; j++)cur = (cur + cnt[j][f(A[i][j])]) % mod;
if((cur + (k*base)%mod) % mod == ans){
cout << i+1;
return;
}
base = base * prime % mod;
}
cout << -1;
}
signed main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int t = 1;
//cin >> t;
while(t--)solve();
}
컴파일 시 표준 에러 (stderr) 메시지
genetics.cpp:17:8: warning: use of 'auto' in parameter declaration only available with '-fconcepts-ts'
17 | void p(auto A){
| ^~~~
# | 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... |