function solution(n, stations, w) {
let answer = 0;
let index=1;
for (let i=0;i<stations.length;i++){
if (stations[i]-w>0){
answer+=Math.ceil(((stations[i]-w)-index)/(w*2+1))
}
index=stations[i]+w+1;
}
if (index-1<n){
answer+=Math.ceil((n-(index-1))/(w*2+1))
}
return answer;
}