当前位置: 首页 > news >正文

P3131 [USACO16JAN] Subsequences Summing to Sevens S Python题解

[USACO16JAN] Subsequences Summing to Sevens S

题目描述

Farmer John’s N N N 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 … 6 1 \ldots 6 16, 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 N N N ( 1 ≤ N ≤ 50 , 000 1 \leq N \leq 50,000 1N50,000). The next N N N

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

0 … 1 , 000 , 000 0 \ldots 1,000,000 01,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

样例输入 #1

7
3
5
1
6
2
14
10

样例输出 #1

5

提示

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

题解

准备国庆假期了,脑子也变得不太好使,这种题我居然没有第一时间想到答案,非常难受。因为脑子进水了,所以我看了别人C++的题解,看到:

( A − B ) m o d n u m ≡ 0 (A-B) \bmod num \equiv 0 (AB)modnum0
等价于
A ≡ B m o d n u m A\equiv B \bmod num ABmodnum

唉,这个同余定理这么常用,为什么我时不时就把它给忘记呢?

大家可以去参考一下大佬的题解:题解 P3131 【[USACO16JAN]子共七Subsequences Summing to Sevens】

这里给出对应的Python代码:

def Solution2():N = int(input())Prefix = 0yvshu = {i: [] for i in range(7)}for i in range(N):Prefix += int(input())yvshu[Prefix%7].append(i+1)ans = max(yvshu[0]) if yvshu[0] else 0for key in yvshu.keys():if len(yvshu[key]) > 1:ans = max(ans, yvshu[key][-1] - yvshu[key][0])print(ans)Solution2()

在这里插入图片描述
关于上面那个定理的题我还可以提供一题:
Ringo’s Favorite Numbers 2

http://www.lryc.cn/news/450486.html

相关文章:

  • 鸿蒙NEXT开发-ArkUI(基于最新api12稳定版)
  • Matplotlib 使用 LaTeX 渲染图表中的文本、标题和数学公式
  • Android 安卓内存安全漏洞数量大幅下降的原因
  • c++primier第十二章类和动态内存
  • Ansible学习之ansible-pull命令
  • Linux:磁盘管理
  • FP7209: 用于紫外线消毒灯的 升压LED恒流驱动芯片
  • 【华为HCIP实战课程二】OSPF基础介绍和OSPF RID NBMA配置详解
  • 网络编程(13)——单例模式
  • 基于定制开发与2+1链动模式的商城小程序搭建策略
  • 银河麒麟,apt 安装软件报错640Unknown Status
  • python UNIT 3 选择与循环(2)
  • 828华为云征文|部署在线文档应用程序 CodeX Docs
  • Linux的多线程(线程的创建,退出,取消请求,取消处理例程,线程属性的设置)
  • git 本地代码关联远程仓库并推送
  • 推荐一个可以把PDF样本册转换为翻页电子书的网站
  • 【Linux 23】线程池
  • Rust SQLite 跨平台使用
  • docker运行arm64架构的镜像、不同平台镜像构建
  • vue基于Spring Boot框架的高校实验室预约管理系统
  • Linux中find命令详解
  • 无水印短视频素材下载网站有哪些?十个高清无水印视频素材网站分享
  • SpringBoot+Activiti7工作流入门实例
  • Azure OpenAI检索增强微调:使用 GPT-4o 对 GPT-4o mini 进行微调,以适应特定领域的应用
  • ISP Pipeline
  • < IDE编程环境配置>
  • Golang | Leetcode Golang题解之第448题找到所有数组中消失的数字
  • 【Spring Boot 入门三】Spring Boot与数据库集成 - 构建数据驱动的应用
  • Web 服务器与动态脚本语言通信的接口协议有哪些
  • ESXI识别服务器磁盘,虚拟机显示无效