ProjectEuler-官网 ProjectEuler 8 c/c++题解

本文介绍了一种算法,用于在给定的字符数组中找到长度为12的连续子串,使得该子串中所有字符转换为数值后的乘积最大。通过使用滑动窗口的概念,代码遍历整个数组,计算每个可能的12长度子串的乘积,并记录最大的乘积值。
摘要由CSDN通过智能技术生成

题目描述
在这里插入图片描述
代码:

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <climits>
#include <cstring>
#include <string>
#include <algorithm>
#include <vector>
#include <deque>
#include <list>
#include <utility>
#include <set>
#include <map>
#include <stack>
#include <queue>
#include <bitset>
#include <iterator>
using namespace std;

typedef long long ll;
const int inf = 0x3f3f3f3f;
const ll  INF = 0x3f3f3f3f3f3f3f3f;
const double PI = acos(-1.0);
const double E = exp(1.0);
const int MOD = 1e9+7;
const int MAX = 1e3+5;
char a[MAX];

int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);

    for(int i = 0; i < 1000; i++)
    {
        cin >> a[i];
    }
    ll max_num = -INF;
    ll tmp;
    for(int i = 12; i < 1000; i++)
    {
        tmp = 1;
        for(int j = i; j >= i - 12; j--)
        {
            tmp *= (a[j] - '0');
        }
        if(tmp > max_num)
        {
            max_num = tmp;
        }
    }
    cout << max_num << endl;

    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值