# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
83284 | charlies_moo | Rasvjeta (COCI17_rasvjeta) | C++98 | 3 ms | 1068 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int n,m,k,ans=0;
bool b[1000];
int main()
{
//freopen("lighting.in","r",stdin);
//freopen("lighting.out","w",stdout);
ios::sync_with_stdio(false);
cin.tie(0);
cin>>n>>m>>k;
memset(b,0,sizeof(b));
for(int i=0;i<m;i++)
{
int p;
cin>>p;
for(int j=p-k-1;j<p+k;j++)
b[j]=1;
}
for(int i=0;i<n;i++)
{
if(b[i]==0)
{
for(int j=i;j<n;j++)
{
if(b[j]==1)
{
int a=j-i-1;
ans+=(a/(2*k+1)+1);
for(int p=i;p<=j;p++)
{
b[p]=1;
}
break;
}
else
{
if(j==n-1)
{
int a=j-i;
ans+=(a/(2*k+1)+1);
for(int p=i;p<=j;p++)
{
b[p]=1;
}
break;
}
}
}
}
}
cout<<ans;
fclose(stdin);
fclose(stdout);
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |