답안 #7403

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
7403 2014-08-05T02:28:42 Z gs13068 고기잡이 (KOI13_fish) C++
0 / 18
0 ms 1088 KB
#include<cstdio>
#include<algorithm>

std::pair<int,int> a[100];

int x[100];
int y[100];

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(t>res)res=t;
      t-=y[n-k-1];
    }
  }
  printf("%d",res);
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 1088 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 1088 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 1088 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 1088 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 1088 KB Output isn't correct
2 Halted 0 ms 0 KB -