2025 年 2 月USACO竞赛金奖组问题二—The Best Subsequence

Farmer John has a binary string of length N (1≤N≤109), initially all zeros.

He will first perform M(1≤M≤2⋅105) updates on the string, in order. Each update flips every character from l to r. Specifically, flipping a character changes it from 0 to 1, or vice versa.

Then, he asks you Q (1≤Q≤2⋅105) queries. For each query, he asks you to output the lexicographically greatest subsequence of length k comprised of characters from the substring from l to r. If your answer is a binary string s1s2…sk, then output (that is, its value when interpreted as a binary number) modulo 109+7.

A subsequence is a string that can be derived from another string by deleting some or no characters without changing the order of the remaining characters.

Recall that string A is lexicographically greater than string B of equal length if and only if at the first position i, if it exists, where AiBi, we have Ai>Bi.

INPUT FORMAT (input arrives from the terminal / stdin):

The first line contains N, M, and Q.

The next M lines contain two integers, l and r (1≤lrN) — the endpoints of each update.

The next Q lines contain three integers, l, r, and k (1≤lrN,1≤krl+1) — the endpoints of each query and the length of the subsequence.

OUTPUT FORMAT (print output to the terminal / stdout):

Output Q lines. The ith line should contain the answer for the ith query.

SAMPLE INPUT:

5 3 9
1 5
2 4
3 3
1 5 5
1 5 4
1 5 3
1 5 2
1 5 1
2 5 4
2 5 3
2 5 2
2 5 1

SAMPLE OUTPUT:

21
13
7
3
1
5
5
3
1

After performing the M operations, the string is 10101.

For the first query, there is only one subsequence of length 5, 10101, which is interpreted as 1⋅24+0⋅23+1⋅22+0⋅21+1⋅20=21.

For the second query, there are 5 unique subsequences of length 4: 0101, 1101, 1001, 1011, 1010. The lexicographically largest subsequence is 1101, which is interpreted as 1⋅23+1⋅22+0⋅21+1⋅20=13.

For the third query, the lexicographically largest sequence is 111, which is interpreted as 7.

SAMPLE INPUT:

9 1 1
7 9
1 8 8

SAMPLE OUTPUT:

3

SAMPLE INPUT:

30 1 1
1 30
1 30 30

SAMPLE OUTPUT:

73741816

Make sure to output the answer modulo 109 +7.

SCORING:

Input 4: N≤10,Q≤1000
Input 5: M≤10
Inputs 6-7: N,Q≤1000
Inputs 8-12: N≤2⋅105 
Inputs 13-20: No additional constraints.

Problem credits: Chongtian Ma

扫码领取USACO试题答案+详细解析

咨询一对一备赛规划

2025 年 2 月USACO竞赛金奖组问题一—Bessie's Function

Bessie has a special function f(x) that takes as input an integer in [1,N]
and returns an integer in [1,N] (1≤N≤2⋅105). Her function f(x) is defined by N
integers a1aN where f(x)=ax (1≤aiN).

Bessie wants this function to be idempotent. In other words, it should satisfy f(f(x))=f(x)for all integers x∈[1,N].

For a cost of ci, Bessie can change the value of ai to any integer in [1,N] (1≤ci≤109). Determine the minimum total cost Bessie needs to make f(x)
idempotent.

INPUT FORMAT (input arrives from the terminal / stdin):

The first line contains N.

The second line contains N

space-separated integers a1,a2,…,aN.

The third line contains N space-separated integers c1,c2,…,cN.

OUTPUT FORMAT (print output to the terminal / stdout):

Output the minimum total cost Bessie needs to make f(x) idempotent.

SAMPLE INPUT:

5
2 4 4 5 3
1 1 1 1 1

SAMPLE OUTPUT:

3

We can change a1=4, a4=4, a5=4. Since all ci equal one, the total cost is equal to 3
, the number of changes. It can be shown that there is no solution with only 2
or fewer changes.

SAMPLE INPUT:

8
1 2 5 5 3 3 4 4
9 9 2 5 9 9 9 9

SAMPLE OUTPUT:

7

We change a3=3 and a4=4. The total cost is 2+5=7.

SCORING:

Subtasks:

Input 3: N≤20
Inputs 4-9:aii
Inputs 10-15: All aiare distinct.
Inputs 16-21: No additional constraints.
Additionally, in each of the last three subtasks, the first half of tests will satisfy ci=1 for all i.

Problem credits: Avnith Vijayram

扫码领取USACO试题答案+详细解析

咨询一对一备赛规划

2025 年 2 月USACO竞赛白金组问题三—True or False Test

Bessie is taking an N-question true or false test (1≤N≤2⋅105). For the i-th question, she will gain apoints if she gets it correct, lose bi points if she gets it incorrect, or remain even if she does not answer it (0<ai,bi ≤109).

Bessie knows all the answers because she is a smart cow, but worries that Elsie (who is administering the test) will retroactively change up to k of the questions after the test such that Bessie does not get those questions correct.

Given Q (1≤QN+1) candidate values of k (0≤kN), determine the number of points Bessie can guarantee for each k, given that she must answer at least k questions.

INPUT FORMAT (input arrives from the terminal / stdin):

The first line contains N and Q.

The next N lines each contain ai and bi.

The next Q lines each contain a value of k. No value of k appears more than once.

OUTPUT FORMAT (print output to the terminal / stdout):

The answer for each k on a separate line.

SAMPLE INPUT:

2 3
3 1
4 2
2
1
0

SAMPLE OUTPUT:

-3
1
7

For each value of k, it is optimal for Bessie to answer all of the questions.

SCORING:

Inputs 2-4: N≤100
Inputs 5-7: Q≤10, N≤2⋅105 
Inputs 7-20: No additional constraints.

Problem credits: Benjamin Qi

扫码领取USACO试题答案+详细解析

咨询一对一备赛规划

2025 年 2 月USACO竞赛白金组问题二—Transforming Pairs

Answer Q(1≤Q≤105) independent queries each of the following form:

You are given four integers a,b,c,d(−1018≤a,b,c,d≤1018). In one operation you can either do a+=b, or b+=a. Determine the minimum number of operations to transform (a,b) into (c,d), or if it is impossible to do so, output −1.

INPUT FORMAT (input arrives from the terminal / stdin):

The first line contains Q.

The next Q lines each contain four integers a,b,c,d.

OUTPUT FORMAT (print output to the terminal / stdout):

The answer for each query on a separate line.

SAMPLE INPUT:

4
5 -3 -1 -3
5 3 5 2
5 3 8 19
5 3 5 3

SAMPLE OUTPUT:

2
-1
3
0

First query: (5,−3)→(2,−3)→(−1,−3)

Second query: Impossible.

Third query: (5,3)→(8,3)→(8,11)→(8,19)

Fourth query: No operations necessary.

SCORING:

Input 2: |a|,|b|,|c|,|d|≤10
Input 3: a,b≥0
Input 4: a≥0≥b
Input 5: a≤0≤b
Input 6: a,b≤0
Input 7: c,d≥0
Input 8: c≥0≥d
Input 9: c≤0≤d
Input 10: c,d≤0
Inputs 11-14: Q≤103
Inputs 15-19: No additional constraints.

Problem credits: Benjamin Qi

扫码领取USACO试题答案+详细解析

咨询一对一备赛规划

2025 年 2 月USACO竞赛白金组问题一—Min Max Subarrays

注意:此问题的时限为 3 秒,是默认值的 1.5 倍。

You are given a length-N integer array a1,a2,…,aN (2≤N≤106,1≤aiN
). Output the sum of the answers for the subproblem below over all N(N+1)/2
contiguous subarrays of a.

Given a nonempty list of integers, alternate the following operations (starting with the first operation) until the list has size exactly one.

1.Replace two consecutive integers in the list with their minimum.
2.Replace two consecutive integers in the list with their maximum.

Determine the maximum possible value of the final remaining integer.

For example,

[4, 10, 3] -> [4, 3] -> [4]
[3, 4, 10] -> [3, 10] -> [10]

In the first array, (10,3) is replaced by min(10,3)=3 and (4,3) is replaced by max(4,3)=4.

INPUT FORMAT (input arrives from the terminal / stdin):

The first line contains N.

The second line contains a1,a2,…,aN.

OUTPUT FORMAT (print output to the terminal / stdout):

The sum of the answer to the subproblem over all subarrays.

SAMPLE INPUT:

2
2 1

SAMPLE OUTPUT:

4

The answer for [2] is 2, the answer for [1] is 1, and the answer for [2,1] is 1.

Thus, our output should be 2+1+1=4.

SAMPLE INPUT:

3
3 1 3

SAMPLE OUTPUT:

12

SAMPLE INPUT:

4
2 4 1 3

SAMPLE OUTPUT:

22

Consider the subarray [2,4,1,3].

1.Applying the first operation on (1, 3), our new array is [2,4,1].
2.Applying the second operation on (4, 1), our new array is [2,4].
3.Applying the third operation on (2, 4), our final number is 2.

It can be proven that 2 is the maximum possible value of the final number.

SCORING:

Inputs 4-5: N≤100
Inputs 6-7: N≤5000
Inputs 8-9: max(a)≤10
Inputs 10-13: No additional constraints.

Problem credits: Benjamin Qi

扫码领取USACO试题答案+详细解析

咨询一对一备赛规划

USACO竞赛评分规则是怎样的?USACO竞赛不同级别的晋级后备考重点!

作为一项在全球范围内享有盛誉的国际竞赛,USACO不仅能够全面检验参赛选手们的编程技能与算法理解能力,更是许多有志于计算机科学及相关领域的留学生们首选的竞赛。对于申请全球顶尖高校的计算机专业,优异的USACO成绩常常成为申请者的强大优势。

USACO竞赛评分规则

2025年USACO竞赛四个级别比赛都是3道题,总分1000分。每道题333.3分。每道题有10个测试点,通过一个可得33.33分。

判分标准

2025年USACO竞赛和NOI系列赛事相同,即依据程序所能正确求解的测试点数量按比例计分。

对于各个测试点,一般题目会标注相应的时限要求和内存要求(如未具体标注,则C/C++/Pascal默认时限2秒,Java/Python默认时限4秒,内存均默认256MB)。

评测示例

即最终包含了10个测试点,其中7个正确、3个超时——绿色表示正确,红色表示错误(x表示错误答案,t表示时间超限,!表示运行时错误或内存超限,e表示输出文件为空,m表示找不到输出文件)。

USACO竞赛不同级别的晋级后备考重点

青铜级别 Bronze(入门级别)

备考重点:掌握基本的编程概念,如分支、循环,以及基础数据结构(列表、函数、二维列表、基础数组)。重点练习穷举算法、模拟算法、贪心算法、全排列、杂类题目和递归。

学习资源:推荐学习《算法基础:第五版》和《算法竞赛入门:第二版》,这些书籍适合初学者,能够帮助你建立坚实的编程基础。

白银级别 Sliver(难度进阶)

备考重点:在青铜级别的基础上,进一步学习排序、二分查找、递归搜索、图的遍历(DFS&BFS)、FLoodfill算法、前缀和、扫描线算法等算法。提高解决问题的能力和代码优化能力。

学习资源:可以参考《挑战程序设计竞赛2 算法和数据结构》和《算法竞赛进阶指南》,这些书籍提供了进阶的算法知识和实践题目。

黄金级别 Gold(极具挑战)

备考重点:深入理解动态规划、最短路径、最小生成树等高级算法。掌握堆、栈、树、链表等高级数据结构,以及算法的时间和空间复杂度分析。

学习资源:《算法解决导论》和《算法竞赛入门经典第二版》是不错的选择,它们不仅涵盖了高级算法,还提供了大量的练习题和案例分析。

铂金级别 Platinum(含金量极高)

备考重点:在黄金级别的基础上,进一步提升算法优化和问题解决能力。准备应对复杂的问题和多种可能的解决方案,提高编程效率和代码质量。

学习资源:USACO算法书是高级选手的必备资料,它们深入探讨了算法的各个方面,并提供了丰富的实践机会。

【扫码免费领取】USACO真题+备赛书单+一对一备考规划!

预约最新真题讲座、课程详情可添加下方顾问老师咨询

思维导图

美本名校"敲门砖"!USACO计算机竞赛具有这四大特点!

对于许多美本留学生来说,STEM专业无疑是最受欢迎的选择之一。在这个背景下,USACO(美国计算机奥林匹克竞赛)成为了无数学子追逐的目标,它既是一项竞争激烈的赛事,也是进入顶尖大学的一块"敲门砖"。

USACO是一项面向全球中学生的计算机编程与算法竞赛,具有以下几个显著特点:

1.计算机领域的高含金量竞赛:

USACO由美国官方举办,历史悠久,享有很高的声誉。对于计划申请美国大学尤其是STEM(科学、技术、工程和数学)专业的学生来说,参加并获奖可以极大地提升个人背景,增加被顶尖大学录取的机会。

2.结果反馈快:

USACO的比赛结果反馈迅速,通常可以在比赛结束后的短时间内得知成绩,有时甚至当场即可知道结果,一周内公布最终排名。这种快速的评分机制对那些接近申请截止日期(DDL)的学生尤其有利,他们可以及时利用这一成就来加强自己的申请资料。

3.层层晋级,更具挑战性:

USACO采用了一种类似于游戏中的“段位”系统,分为青铜(Bronze)、白银(Silver)、黄金(Gold)和铂金(Platinum)四个级别。每个级别的难度逐渐增加,参赛者从较低的级别开始,通过解决一系列的问题来获得积分,进而晋升到更高的级别。这种设计不仅增加了竞赛的乐趣,还使得不同水平的选手都能找到适合自己的挑战,同时也为参赛者提供了多次尝试和进步的机会。

4.门槛低,受众多:

尽管USACO的题目难度较高,但它对参赛者的年龄和学历没有严格限制,理论上任何对编程有兴趣的人都可以注册账号并参加。这意味着无论是小学生还是高中生,甚至是成人爱好者,都可以根据自己的能力和兴趣参与进来。此外,USACO支持多种编程语言,包括C++、Java、Python等,这为参赛者提供了更大的灵活性。

USACO不仅是一个挑战自我、提高编程技能的平台,也是一个展示个人才能、增强学术背景的重要途径。对于有志于从事计算机科学相关领域的学生来说,参加USACO是一次宝贵的经历。

【扫码免费领取】USACO真题+备赛书单+一对一备考规划!

预约最新真题讲座、课程详情可添加下方顾问老师咨询

思维导图

如何参加USACO?USACO适合哪几类学生参与?

USACO的成绩在申请美国顶尖高校时,能够为学生的学历背景增添重要的亮点。比如,哈佛大学、麻省理工学院、斯坦福大学等知名学府在审核申请材料,往往会更青睐那些在USACO中获得优异成绩的学生,因为这代表了学生在计算机科学领域的潜力和能力。

如何参加USACO?

学生可以在比赛开始时刻的任何时候访问网站,通过点击按钮来激活自己的比赛计时器,比赛时长介于3到5小时之间。一旦“开始”按钮被触发,计时器便会持续倒计时,直至时间耗尽,期间不得暂停。

USACO适合哪几类学生参与?

一、适合群体特征

无严格门槛,但需编程基础

掌握至少一门编程语言(推荐Python/Java/C++),具备基础算法能力

能独立完成循环、条件判断、数组操作等基础代码实现

建议完成50+道LeetCode简单/中等难度题目后再参赛

年龄跨度灵活

主要参与群体为8-12年级中学生

表现优异的小学生(如NOIP普及组获奖者)可提前尝试

大学生亦可参与(但需注意目标群体差异)

兴趣驱动型学习者

对算法设计、数学建模有持续探索欲

享受逻辑推理与优化解题过程

愿意投入300+小时进行系统性算法训练

二、战略价值分析

升学竞争力提升

白金级奖项:MIT/斯坦福等级别院校申请核心加分项

金级奖项:TOP30大学CS专业录取的重要背书

银级奖项:可强化理工科申请者的学术形象

能力成长路径

青铜→白银:掌握DFS/BFS/贪心等基础算法

白银→黄金:深化DP/图论/数据结构应用

黄金→白金:攻克高级数论/组合优化难题

备赛时间规划

入门阶段(3-6个月):夯实语言基础+经典算法

提升阶段(6-12个月):专题突破+模拟赛训练

冲刺阶段(1-3个月):历年真题实战+时间复杂度优化

【扫码免费领取】USACO真题+备赛书单+一对一备考规划!

预约最新真题讲座、课程详情可扫码咨询⇓

思维导图

USACO vs 国内信奥赛事的难度对比!参加USACO需要掌握哪些知识点?

USACO竞赛不仅是计算机爱好者的舞台,也是广大中学生展现自我的一扇窗口,通过这项全球范围内认可的赛事,学生们能够在激烈的竞争中磨练技能,开拓视野,为申请名校以及未来的职业发展铺平道路。对于希望在计算机科学领域大展拳脚的年轻才俊来说,USACO无疑是他们通往成功的“敲门砖”。

第一场比赛:2024 年 12 月 13 日至 16 日(已结束)

第二场比赛:2025 年 1 月 24 日至 27 日(已结束)

第三场比赛:2025 年 2 月 21 日至 24 日(即将开赛)

美国公开赛:2025 年 3 月 21 日至 24 日

训练营:2025 年 5 月至 6 月

需注意,金级和铂金级参赛选手必须在美国东部时间周六 12:00 至 12:15 开始比赛,才能获得 “认证成绩”;铜级和银级选手仍可在比赛开放窗口期内任选四小时参赛。

USACO vs 国内信奥赛事的难度对比

USACO 按照考察范围和题目难度,分为四个组别:

Bronze——青铜组

Silver——白银组

Gold——黄金组

Platinum——白金组

但结合近两年的 USACO 月赛试题难度进行综合比较,难度细节应如下(以下假设 CSP-J/CSP-S/NOIP 赛题难度按题号递增排序,难度范围上下浮动,仅供参考):

参加USACO需要掌握的知识点

USACO(USA Computing Olympiad)分为四个级别:青铜级(Bronze)、白银级(Silver)、黄金级(Gold)和铂金级(Platinum)。每个级别的考试内容和要求有所不同,以下是各级别所需掌握的知识点总结:

青铜级(Bronze)

目标:

适应USACO问题的复杂性以及熟悉解决问题的格式。

掌握基本编程知识和技巧。

需要考核知识点:

基础数组,多重循环,复合判断、枚举算法、深度优先搜索、简单图论算法等。

白银级(Silver)

目标:

具备基本的问题解决能力和简单算法及基础数据结构的应用。

确保程序在每个测试用例的时间和内存范围内运行。

需要考核知识点:

基本数据结构、贪心、递归、递推、二分、前缀和等基本算法

黄金级(Gold)

目标:

具有较好的算法知识和对数据结构的深入理解。

关注算法的时间和空间复杂度。

需要考核知识点:

树、图等数据结构,动态规划等高级算法,算法时间和空间复杂度。

铂金级(Platinum)

目标:

具有很高的编程基础,对算法有深入的理解。

对数学也有较高要求,能够解决复杂的算法问题。

需要考核知识点:

各类高级的数据结构和算法,对数学也有较高要求。

【扫码免费领取】USACO真题+备赛书单+一对一备考规划!

预约最新真题讲座、课程详情可扫码咨询⇓

思维导图

本赛季USACO有哪些重要的规则更新?USACO竞赛晋级分数线汇总!

在当今迅速发展的科技时代,计算机科学与编程能力的重视程度愈发凸显,高水平的编程竞赛逐渐成为学生学业和职业发展的重要踏板。美国计算机奥林匹克竞赛(USACO)便是这样一项备受瞩目的比赛,因其高含金量和全球影响力,成为了学生申请国内外顶尖高校的重要筹码。

USACO是一个面向全球的信息学竞赛平台,旨在为信息学爱好者提供一个展示和提升自己编程技能的机会。

本赛季USACO有哪些重要的规则更新?

成绩认证制度革新:

为了增强比赛的公信力,USACO引入了更加严格的认证成绩制度。在金级和铂金级组别中,参赛选手必须在美国东部时间周六12:00PM的规定时间段开始比赛,才能获得认证成绩。

禁止使用AI和VPN:

竞赛期间严格禁止使用生成式AI工具(例如ChatGPT)和其他自动化工具辅助解题。此外,还规定不得更改IP地址或使用VPN来隐匿真实的地理位置,尤其是在美国地区的参赛者。这些措施都是为了确保比赛的公平性和公正性。违规行为可能导致账号被封禁。

晋级难度提升:

USACO设有青铜、白银、黄金和铂金四个级别,每个级别的难度依次递增。晋级标准也有所不同。特别地,在金级升铂金级的过程中,需要取得“认证成绩”。这意味着要么在比赛中获得满分直接晋级,要么等待公布的晋级分数线,通常700-800分被认为是安全的晋级分数范围。

USACO竞赛晋级分数线

USACO竞赛每个级别都有3个编程大题,每道问题分值为333.333,总分1000分,USACO竞赛参赛者需要在比赛结束前通过网络将写好的程序提交,程序提交后官网会给出得分。

如果学生在竞赛中取得满分即当场晋级到下一等级,可以在当月继续参加下一等级的比赛。没有拿到满分,需要等待晋级分数线公布后才能知道是否晋级,一般高于750/800就能晋级。

根据官方给出的分数线,USACO 1月月赛晋级分数线如下:

晋级白银组分数线:700分或以上 
晋级黄金组分数线:700分或以上 
晋级白金组分数线:700分或以上 

USACO 晋级分数线

2023-2024
组别 铜升银 银升金 银升金
12月月赛 750 750 700
1月月赛 750 700 750
2月月赛 750 700 750
公开赛 650 650 700
2022-2023
组别 铜升银 银升金 银升金
12月月赛 750 700 750
1月月赛 750 700 750
2月月赛 750 700 750
公开赛 750 750 750
2021-2022
组别 铜升银 银升金 金升铂金
12月月赛 700 700 750
1月月赛 750 750 650
2月月赛 700 650 750
公开赛 700 700 800

【扫码免费领取】USACO真题+备赛书单+一对一备考规划!

预约最新真题讲座、课程详情可扫码咨询⇓

思维导图