# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
482580 | Hazem | Lottery (CEOI18_lot) | C++14 | 149 ms | 972 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define LL long long
using namespace std;
const int N = 1e4+1;
const LL MOD = 1e9+7;
int a[N];
LL hashs[N];
map<LL,LL>mp;
set<int>st;
LL mult(LL a,LL b){
return (a*b)%MOD;
}
LL add(LL a,LL b){
return (a+b)%MOD;
}
int main(){
int n,l;
scanf("%d%d",&n,&l);
for(int i=1;i<=n;i++){
scanf("%d",&a[i]);
}
for(int i=1;i<=n-l+1;i++){
LL prime = 23,hash = 1,power = 1;
for(int j=i;j<=i+l-1;j++)
hash = add(hash,mult(a[j],power)),power = mult(power,prime);
mp[hash]++;
hashs[i] = hash;
}
for(int i=1;i<=n-l+1;i++)
printf("%lld ",mp[hashs[i]]-1);
puts("");
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |