# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
145498 | charlies_moo | Rasvjeta (COCI17_rasvjeta) | C++98 | 3 ms | 380 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 <iostream>
using namespace std;
int main(){
int n,k,l,i,j;
int a[4000]={0};
cin >>n>>k>>l;
int x,t;
for(i=0;i<k;i++){
cin >>x;
if(x-l<0){
t=0;
}
else{
t=x-l;
}
for(j=t;j<=x+l;j++){
a[j]=1;
}
}
int s=0;
for(i=1;i<=n;i++){
if(a[i]==0){
for(j=i;j<=i+2*l;j++){
a[j]=1;
}
s++;
i=j-1;
}
}
cout <<s;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |