#include<cstdio>
#include<algorithm>
std::pair<int,int> a[100];
int x[101];
int y[101];
int main()
{
int res=0;
int i,j,k,t,n,m;
scanf("%*d%d%d",&n,&m);
n>>=1;
for(i=0;i<m;i++)scanf("%d%d",&a[i].first,&a[i].second);
std::sort(a,a+n);
for(i=0;i<m;i++)for(j=0;j<m;j++)
{
for(k=0;k<=n;k++)x[k]=y[k]=0;
for(k=0;k<m;k++)if(a[k].first>=a[i].first&&a[k].second>=a[j].second&&a[k].first+a[k].second-a[i].first-a[j].second<=n)
{
x[a[k].first-a[i].first]++;
y[a[k].second-a[j].second]++;
}
t=0;
for(k=0;k<=n;k++)
{
t+=x[k];
if(k>0&&k<n&&t>res)res=t;
t-=y[n-k];
}
}
printf("%d",res);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
1088 KB |
Output is correct |
2 |
Correct |
0 ms |
1088 KB |
Output is correct |
3 |
Correct |
0 ms |
1088 KB |
Output is correct |
4 |
Correct |
0 ms |
1088 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
1088 KB |
Output is correct |
2 |
Correct |
0 ms |
1088 KB |
Output is correct |
3 |
Incorrect |
0 ms |
1088 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
1088 KB |
Output is correct |
2 |
Correct |
0 ms |
1088 KB |
Output is correct |
3 |
Correct |
0 ms |
1088 KB |
Output is correct |
4 |
Correct |
0 ms |
1088 KB |
Output is correct |
5 |
Correct |
0 ms |
1088 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
1088 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
1088 KB |
Output is correct |
2 |
Correct |
0 ms |
1088 KB |
Output is correct |
3 |
Correct |
4 ms |
1088 KB |
Output is correct |
4 |
Correct |
4 ms |
1088 KB |
Output is correct |