Project Euler 011 Largest product in a grid

题意:给定一个 20×20 的矩阵,求最大的四个连续的数的乘积,连续意思是同一行连续或同一列连续或者斜线连续。
分析:暴力枚举四个数的起点,暴力枚举方向, O(20244) ,可以用之前 008 的方法做到 O(2024)

#include <bits/stdc++.h>

#define ll long long

#define pii std::pair<int,int>
#define mp std::make_pair
#define fi first
#define se second

#define SZ(x) (int)(x).size()
#define pb push_back

template<class T>inline void chkmax(T &x, const T &y) {if(x < y) x = y;}
template<class T>inline void chkmin(T &x, const T &y) {if(x > y) x = y;}

template<class T>
inline void read(T &x) {
    char c;int f = 1;x = 0;
    while(((c=getchar()) < '0' || c > '9') && c != '-');
    if(c == '-') f = -1;else x = c-'0';
    while((c=getchar()) >= '0' && c <= '9') x = x*10+c-'0';
    x *= f;
}
static int outn;
static char out[(int)2e7];
template<class T>
inline void write(T x) {
    if(x < 0) out[outn++] = '-', x = -x;
    if(x) {
        static int tmpn;
        static char tmp[20];
        tmpn = 0;
        while(x) tmp[tmpn++] = x%10+'0', x /= 10;
        while(tmpn) out[outn++] = tmp[--tmpn];
    }
    else out[outn++] = '0';
}

const int d[][2] = {{0, 1}, {1, 0}, {1, 1}, {-1, 1}};

int g[20][20];

int main() {
    for(int i = 0; i < 20; ++i)
        for(int j = 0; j < 20; ++j)
            read(g[i][j]);
    int max = 0;
    for(int t = 0; t < 4; ++t)
        for(int i = 0; i < 20; ++i)
            for(int j = 0; j < 20; ++j)
                if(i + d[t][0] * 3 < 20 && i + d[t][0] * 3 >= 0 && j + d[t][1] * 3 < 20) {
                    int prd = 1;
                    for(int k = 0; k < 4; ++k)
                        prd *= g[i + d[t][0] * k][j + d[t][1] * k];
                    chkmax(max, prd);
                }
    printf("%d\n", max);
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值