洛谷——P3131 [USACO16JAN]子共七Subsequences Summing to Sevens 题解

题目描述
给你n个数,分别是a[1],a[2],…,a[n]。求一个最长的区间[x,y],使得区间中的数(a[x],a[x+1],a[x+2],…,a[y-1],a[y])的和能被7整除。输出区间长度。若没有符合要求的区间,输出0。

输入:
The first line of input contains N (1 \leq N \leq 50,000). The next N
lines each contain the N integer IDs of the cows (all are in the range0 \ldots 1,000,0000…).
输出:
Please output the number of cows in the largest consecutive group whose IDs sum to a multiple of 7. If no such group exists, output 0.
样例:
7
3
5
1
6
2
14
10

输出:
5

思路:额~~~~~,肯定是前缀和,但又不是,其实是前缀和取余7,再用两个数组装0~6各自出现的第一次与最后一次的距离,最后取他们之间最大的就可以了

代码:

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
ll n,a[50005],k,x,f[7],l[7],maxn;
int main(){
    cin>>n;
    for(int i=1;i<=n;i++){
        cin>>a[i];
        a[i]+=a[i-1];
        a[i]%=7;
    }
    for(int i=1;i<=n;i++){
        l[a[i]]=i;
    }
    for(int i=n;i>0;i--){
        f[a[i]]=i;
    }
    for(int i=0;i<7;i++){
        maxn=max(maxn,l[i]-f[i]);
    } 
    cout<<maxn<<endl;
    return 0;
} 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值