# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1060167 | user736482 | Lottery (CEOI18_lot) | C++17 | 3063 ms | 4188 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
int n,q,a,k,l;
vector<int>v,poz,pom;//duze jedno do usuniecia
int pod[10007];
int licz[107][10007];
int main(){
cin>>n>>l;
for(int i=0;i<n;i++){
cin>>a;
v.push_back(a);
}
cin>>q;
for(int i=0;i<q;i++){
cin>>k;
k=l-k;
pom.push_back(k);
}
for(int i=0;i<l-1;i++){
poz.clear();
for(int j=i+1;j<n;j++){
if(v[i]==v[j]) poz.push_back(j);
}
for(int j=0;j<poz.size();j++){
pod[-i+poz[j]]++;
}
}
for(int i=l-1;i<n;i++){
if(i!=l-1){
poz.clear();
i=i-l;
for(int j=i+1;j<n;j++){
if(v[i]==v[j]) poz.push_back(j);
}
for(int j=0;j<poz.size();j++){
pod[-i+poz[j]]--;
}
i=i+l;}
poz.clear();
for(int j=i+1;j<n;j++){
if(v[i]==v[j]) poz.push_back(j);
}
for(int j=0;j<poz.size();j++){
pod[-i+poz[j]]++;
}
//for(int j=l-1;j<i;j++) cout<<0<<" ";
//for(int j=i;j<n;j++)
//cout<<pod[-i+j]<<" ";
for(int j=i+1;j<n;j++){
for(int s=0;s<q;s++){
k=pom[s];
if(pod[-i+j]>=k){
licz[s][i-l+1]++;
licz[s][j-l+1]++;
}
}
//match[i-l+1].push_back(pod[-i+j]);
//match[j-l+1].push_back(pod[-i+j]);
}
}
for(int i=0;i<q;i++){
for(int j=0;j<n-l+1;j++){
cout<<licz[i][j]<<" ";
}
cout<<"\n";
}
}
Compilation message (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... |