UVA 10827(环面部分数组和最大值)

本文介绍了一种解决二维矩阵中寻找最大子矩阵和的问题的方法。通过枚举矩阵的边界并将其转化为一维子数组的最大和问题,利用动态规划进行高效求解。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

思路

1,枚举每个开始的左上角的坐标,然后枚举矩形的长和宽,用数组来记录每一列的前n行和,这个数组可以是二维的,也可以是一维,用滚动来实现。用sum[i]来记录前n列和,更新ans,即可。
2,枚举矩形的上下界限,将二维数组降为一维数组的连续子序列的最大值。dp一下就可以了。

思路一代码

#include <bits/stdc++.h>

using namespace std;
int a[160][160];
int lie[160], sum[160];
int main()
{
    //freopen("in.txt","r",stdin);
    int t;
    cin >> t;
    while(t--)
    {
        int n;
        cin >> n;
        for(int i = 0; i < n; i++)
            for(int j = 0; j < n; j++)
            {
                cin >> a[i][j];
                a[i+n][j] = a[i+n][j+n] = a[i][j+n] = a[i][j];
            }
        long long ans = -1e7;
        for(int x = 0; x < n; x++)
            for(int y = 0; y < n; y++)
                for(int j = 0; j < n; j++)
                    for(int i = 0; i < n; i++)
                    {
                        lie[i]=a[x+i][y+j];
                        if(i)  lie[i]+=lie[i-1];
                        if(j)  sum[i]+=lie[i];
                        else   sum[i]=lie[i];
                        if(ans<sum[i]) ans=sum[i];
                    }
        cout << ans << endl;
    }
    return 0;
}
### UVa818 切断圆链问题解决方案 对于UVa818切断圆链的问题,目标是在最少切割次数的情况下将给定长度的闭合链条分割成指定数量的小段。该问题可以通过贪心算法来有效求解。 #### 贪婪策略分析 为了最小化切割次数,在每次操作时应尽可能多地利用已有的切口位置。具体来说,当需要制作n个链接时,只需要做(n-1)次切割即可完成任务[^1]。 #### 实现方法概述 程序接收一系列整数作为输入数据,表示所需制造的不同尺寸片段数目;接着计算并输出达到这些要求所需的最低切割次数。这里给出Python版本的具体实现: ```python def min_cuts_needed(links): """Calculate minimum cuts needed to produce given link counts.""" # Remove duplicates and sort descendingly unique_links = sorted(set(links), reverse=True) total_cuts, current_length = 0, 0 while unique_links: next_cut = unique_links.pop(0) if not unique_links or (unique_links[0]*2 >= next_cut): total_cuts += 1 current_length = next_cut elif sum(unique_links)*2 < next_cut: break else: temp_sum = 0 index_to_remove = None for i, val in enumerate(unique_links): temp_sum += val if temp_sum*2 >= next_cut: index_to_remove = i break del unique_links[:index_to_remove+1] total_cuts += 1 current_length = next_cut return max(total_cuts - 1, 0) if __name__ == "__main__": import sys input_data = list(map(int, sys.stdin.readline().strip().split())) result = min_cuts_needed(input_data[:-1]) print(result) ``` 此代码实现了上述贪婪策略,并通过标准输入读取测试案例中的链接需求列表。注意最后会减去一次因为初始状态下的虚拟“零”切片[^1]。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值