UVALive - 3695 ——Distant Galaxy(思维,优化)

题目链接:https://vjudge.net/problem/UVALive-3695

题意:给出n个点,找出一个矩形,使得所有的点恰好在矩形的边上的个数最多,求最多是多少。

白书53页

#include
#include
#include
using namespace std;
pairA[110];
int y[110],on[110],on2[110],left[110];
int n,m;
int solve()
{
    sort(A+1,A+n+1);
    sort(y+1,y+n+1);
    m=unique(y+1,y+n+1)-y-1;
    int ans=0;
    if(m<=2) return n;
    for(int a=1;ay[a]) on[k]++;
                if(A[i].second<=y[b]&&A[i].second>=y[a]) on2[k]++;
            }
            if(k<=2) return n;
            int M=0;
            for(int i=1;i<=k;i++)
            {
                ans=max(ans,left[i]+on2[i]+M);
                M=max(M,on[i]-left[i]);
            }
        }
    }
    return ans;
}
int main()
{
    int t=0;
    while(~scanf("%d",&n),n)
    {
        for(int i=1;i<=n;i++)
        {
            scanf("%d%d",&A[i].first,&A[i].second);
            y[i]=A[i].second;
        }
        printf("Case %d: %d\n",++t,solve());
    }
}

 

你可能感兴趣的:(思维,ACM白书)