求组成的等腰三角形面积最大值。

对此题的总结:暴力出奇迹

组成的三角形放置方式一共只有4种,用ans表示目前已知的最长三角形的边长,从上到下,从左到右枚举顶点,再枚举边长,一个重要剪枝是枚举边长l时先判断l = ans时的边能不能对称。

最终暴力只要200多ms,而时间限制为10s

#include<cstdio>

#include<iostream>
#include<cstdlib>
#include<cstring>
#include<string>
#include<algorithm>
#include<map>
#include<queue>
#include<vector>
#include<cmath>
#include<utility>
using namespace std;
typedef long long LL;
const int N = , INF = 0x3F3F3F3F;
#define MS(a, num) memset(a, num, sizeof(a))
#define PB(A) push_back(A)
#define FOR(i, n) for(int i = 0; i < n; i++)
char g[N][N];
int n, m;
int ans  = ; bool judge(int x1, int y1, int x2, int y2){
    while(y1 < y2){
        if(g[x1][y1] != g[x2][y2]){
            return false;
        }
        x1--;
        x2++;
        y1++;
        y2--;
    }
    return true;
} bool judge2(int x1, int y1, int x2, int y2){
    while(x1 < x2){
        if(g[x1][y1] != g[x2][y2]){
            return false;
        }
        x1++;
        x2--;
        y1++;
        y2--;
    }
    return true;
} void solve1(){
    for(int i =  ;i < n; i++){
        for(int j = ; j < m; j++){
            if(i + ans - < n && j + ans -  < m){             if(!judge(i + ans - , j, i, j + ans - )){
                    continue;
                }
            for(int l = ; i + l - < n && j + l -  < m; l++){
                if(!judge(i + l - , j, i, j + l - )){
                    break;
                }
                ans = max(ans , l);
            }
            }
        }
    }
} void solve2(){
    for(int i =  ;i < n; i++){
        for(int j = ; j < m; j++){             if(j - ans +  >= && i + ans -  < n){             if(!judge2(i, j - ans + , i + ans - , j )){
                    continue;
                }             for(int l =; j - l +  >= && i + l -  < n; l++){
                if(!judge2(i, j - l + , i + l - , j )){
                    break;
                }
                ans = max(ans , l);
            }
        }
        }
    }
} void solve3(){
    for(int i =  ;i < n; i++){
        for(int j = ; j < m; j++){
            if(i - ans +  >= && j + ans -  < m){             if(!judge2(i - ans + , j, i , j + ans - )){
                    continue;
                }
            for(int l = ; i - l +  >= && j + l -  < m; l++){
                if(!judge2(i - l + , j, i , j + l - )){
                    break;
                }
                ans = max(ans , l);
            }
            }
        }
    }
} void solve4(){
    for(int i =  ;i < n; i++){
        for(int j = ; j < m; j++){
            if(j - ans +  >= && i - ans +  >= ){             if(!judge(i, j - ans + , i - ans +  , j)){
                    continue;
                }
            for(int l = ; j - l +  >= && i - l +  >= ; l++){
                if(!judge(i, j - l + , i - l +  , j)){
                    break;
                }
                ans = max(ans , l);
            }
            }
        }
    }
} int main(){
    int t;
    cin>>t;
    while(t--){
        cin>>n>>m;
        for(int i=  ; i< n; i++){
            scanf("%s", g[i]);
        }
        ans = ;
        int mini = min(n ,m);
        solve1();
        if(ans != mini){
            solve2();
        }
        if(ans != mini){
            solve2();
        }         if(ans != mini){
            solve3();
        }
        if(ans != mini){
            solve4();
        }         cout<<ans * (ans + )/<<'\n';
    }     return ;
}

HDU4495 Rectangle的更多相关文章

  1. [LeetCode] Perfect Rectangle 完美矩形

    Given N axis-aligned rectangles where N > 0, determine if they all together form an exact cover o ...

  2. [LeetCode] Max Sum of Rectangle No Larger Than K 最大矩阵和不超过K

    Given a non-empty 2D matrix matrix and an integer k, find the max sum of a rectangle in the matrix s ...

  3. [LeetCode] Smallest Rectangle Enclosing Black Pixels 包含黑像素的最小矩阵

    An image is represented by a binary matrix with 0 as a white pixel and 1 as a black pixel. The black ...

  4. [LeetCode] Rectangle Area 矩形面积

    Find the total area covered by two rectilinear rectangles in a2D plane. Each rectangle is defined by ...

  5. [LeetCode] Maximal Rectangle 最大矩形

    Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing all ones and ...

  6. [LeetCode] Largest Rectangle in Histogram 直方图中最大的矩形

    Given n non-negative integers representing the histogram's bar height where the width of each bar is ...

  7. Maximal Rectangle

    很不好想的一道题,参考:http://blog.csdn.net/doc_sgl/article/details/11832965 分为两步:把原矩阵转为直方图,再用largest rectangle ...

  8. 85. Maximal Rectangle

    85. Maximal Rectangle Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle c ...

  9. poj 2559 Largest Rectangle in a Histogram - 单调栈

    Largest Rectangle in a Histogram Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 19782 ...

随机推荐

  1. Apple WatchKit 初探

    首先新建一个普通project即可. 然后添加WatchKit, file->new->target 直接NEXT后就能见到APPLE WATCH的编辑界面了. 因为apple watch ...

  2. SVN钩子说明

    post-commit在提交完成,成功创建版本之后执行该钩子,提交已经完成,不可更改,因此本脚本的返回值被忽略. post-lock对文件进行加锁操作之后执行该脚本 post-revprop-chan ...

  3. JQuery textarea中val(),text()

    val()是当前输入框的前台显示内容 text()是原始内容, 调试时浏览器审查元素可以发现如果只改变val(),text()值是不会改变的

  4. EXT Grid celleditor列编辑,动态控制某一单元格只读

    listeners : { beforeedit:function(editor, context, eOpts) { if(context.record.data.hasRatio == " ...

  5. 转帖:如何建立与使用 Window setup project

    原文地址: http://www.codeproject.com/Articles/12548/Visual-Studio-Windows-Application-Setup-Project

  6. Group Anagrams

    Given an array of strings, group anagrams together. For example, given: ["eat", "tea& ...

  7. 时间和日期控件(Calendar1)

    取得选择的: taskItem["data"] = Calendar1.SelectedDate.ToShortDateString();

  8. 抓取网页内容生成kindle电子书

    参考: http://calibre-ebook.com/download_linux http://blog.codinglabs.org/articles/convert-html-to-kind ...

  9. action 方法的访问

    Action中的方法的访问: 访问Action的中的方法,默认情况下只能访问execute方法.那么多次请求就不能提交到一个Action.能不能一个模块的多次请求提交到一个Action中? * 需要使 ...

  10. c#图片输出

    1:  Response.BinaryWrite() 其实就是和输出文字一样 只是图片是流的形式; delegate long myDel(int first, int second); FileSt ...