# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1060174 |
2024-08-15T11:19:28 Z |
kachim2 |
Lottery (CEOI18_lot) |
C++17 |
|
80 ms |
600 KB |
#include <bits/stdc++.h>
using namespace std;
int main()
{
int l, n;
cin >> n >> l;
vector<int> a(n);
vector<__int128_t> hashe(n-l+1);
for(auto &i:a) cin >> i;
__int128_t almoptrime = 1e9+3;
almoptrime=almoptrime*almoptrime*almoptrime*almoptrime+7;
for(int i = 0; i < n-l+1; i++)
{
__int128_t has = 0;
for(int llll = 0; llll < l; llll++)
{
has+=a[i+llll];
has*=1e9+7;
has%=almoptrime;
}
hashe[i]=has;
}
int q;
cin >> q;
while(q--)
{
int k;
cin >> k;
for(int i = 0; i < n-l+1; i++)
{
int ans = 0;
for(int j = 0; j < n-l+1; j++)
{
if (i==j) continue;
if(hashe[i]==hashe[j]) ans++;
}
cout << ans << ' ';
}
cout << '\n';
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
80 ms |
600 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
80 ms |
600 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |