# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
92124 | tjrwodnjs999 | 격자 보존하기 (GA9_preserve) | C++11 | 24 ms | 2936 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,m,k,arr[100005],a[100005],b[100005],Max,sum;
int main()
{
scanf("%d%d%d",&n,&m,&k);
for(int i=0;i<m;i++) scanf("%d",&arr[i]);
for(int i=1;i<m;i++) a[i]=arr[i]-arr[i-1]-1;
sort(a+1,a+m,greater<int>());
for(int i=1;i<m;i++) b[i]+=b[i-1]+a[i];
if(k==1) Max=max(arr[0]-1,n-arr[m-1]);
else if(k%2) Max=max(b[k/2]+max(arr[0]-1,n-arr[m-1]),b[k/2-1]+arr[0]-1+n-arr[m-1]);
else Max=max(b[k/2],b[k/2-1]+arr[0]-1+n-arr[m-1]);
printf("%d",Max);
}
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... |