ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

P3131 [USACO16JAN]子共七Subsequences Summing to Sevens

2019-11-02 13:03:06  阅读:278  来源: 互联网

标签:Sevens 子共七 group P3131 NN IDs 000 cows FJ


题目描述

Farmer John's NN cows are standing in a row, as they have a tendency to do from time to time. Each cow is labeled with a distinct integer ID number so FJ can tell them apart. FJ would like to take a photo of a contiguous group of cows but, due to a traumatic childhood incident involving the numbers 1 \ldots 61…6, he only wants to take a picture of a group of cows if their IDs add up to a multiple of 7.

Please help FJ determine the size of the largest group he can photograph.

给你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 NN (1 \leq N \leq 50,0001≤N≤50,000). The next NN

lines each contain the NN integer IDs of the cows (all are in the range

0 \ldots 1,000,0000…1,000,000).

输出格式

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.

输入输出样例

输入 #1
7
3
5
1
6
2
14
10
输出 #1
5

说明/提示

In this example, 5+1+6+2+14 = 28.

 

 

#include<iostream>
#include<cstdio>
using namespace std;
int s,n,i,f[15],a,ans;
int main(){
	cin>>n;
	for(int k=1;k<=15;k++){
	    f[k]=-1;
	}
	f[0]=0;
	for(i=1;i<=n;i++){
		cin>>a;
		s=(s+a)%7;
		if(f[s]==-1){f[s]=i;}
		else{ans=max(ans,i-f[s]);}
	}
	cout<<ans;
}

  

标签:Sevens,子共七,group,P3131,NN,IDs,000,cows,FJ
来源: https://www.cnblogs.com/xiongchongwen/p/11781390.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有