Codeforces 103D Time to Raid Cowavans

题意:

给你n<=3*1e5头重w[i]的牛和p<=3*1e5个询问,每个询问给出a、b,问你所有a、a+b、a+2*b........a+k*b<=n的牛的重量。

思路:

由于这里的n、p都很大,我们直接暴力的话会TLE,那么我们先将b从小到大排序,分块处理(为什么要分呢?其实我也不知道)。分成mid=sqrt(n+1),若b>=mid,直接暴力,若b<mid,则定义dp[j]为以j为起点now_b为等差的累加和值,即对于一个以a为起点b为等差的数来说,如果我们已经知道了dp[a]的值那么我们可以直接得到答案,否则从后往前推,dp[j]=dp[j+b]+w。

#include<cstdio>
#include<cmath>
#include<cstring>
#include<algorithm>
using namespace std;
typedef __int64 LL;

const int MAX=300005;
int n,m;
LL w[MAX],ans[MAX],dp[MAX];

struct Node{
	int id,a,b;
}c[MAX];

bool cmp(const Node& t1,const Node& t2){
	if(t1.b!=t2.b) return t1.b<t2.b;
	else return t1.a<t2.a;
}

int main(){
	scanf("%d",&n);
	for(int i=1;i<=n;i++){
		scanf("%I64d",&w[i]);
	}
	scanf("%d",&m);
	for(int i=0;i<m;i++){
		scanf("%d%d",&c[i].a,&c[i].b);
		c[i].id=i;
	}
	sort(c,c+m,cmp);
	int now_b=0;
	int mid=sqrt(n+1);
	memset(ans,0,sizeof(ans));
	memset(dp,0,sizeof(dp));
	for(int i=0;i<m;i++){
		if(c[i].b>=mid){
			for(int j=c[i].a;j<=n;j+=c[i].b){
				ans[c[i].id]+=w[j];
			}
		}
		else{
			if(c[i].b!=now_b||dp[c[i].a]==0){
				for(int j=n;j>=1;j--){
					if(j+c[i].b>n) dp[j]=w[j];
					else dp[j]=dp[j+c[i].b]+w[j];
				}
			}
			ans[c[i].id]=dp[c[i].a];
			now_b=c[i].b;
		}
	}
	for(int i=0;i<m;i++){
		printf("%I64d\n",ans[i]);
	}
	return 0;
}


### 编程问题或教程从0到y的获取方法 对于希望在Codeforces平台上找到难度范围从简单至特定等级(标记为`y`)的问题或教程,可以采取多种策略来实现这一目标。Codeforces提供了一个强大的过滤器功能,允许用户基于标签、解决次数以及题目难度筛选问题。 #### 使用Codeforces内置工具寻找合适的问题 通过访问Codeforces的问题集页面并应用适当的选择条件,能够有效地定位所需资源。具体而言,在问题集合页面中存在一个高级搜索选项,支持按照多个维度进行细化检索: - **按标签分类**:可以选择诸如“constructive algorithms”这样的主题标签[^1]。 - **依据难度区间挑选**:设定下限为入门级(即 rating 800),上限则根据个人需求调整至指定值`y`。例如,如果想要覆盖所有不超过rating 1900的问题,则应在此处输入相应数值作为最大边界。 ```python import requests from bs4 import BeautifulSoup def fetch_problems_by_difficulty(min_rating, max_rating): url = f"https://codeforces.com/problemset/page/1?difficulty={min_rating}-{max_rating}" response = requests.get(url) soup = BeautifulSoup(response.text, "html.parser") problem_list = [] for row in soup.select(".problems tr"): columns = row.find_all('td') if len(columns)>0: name_cell = columns[0].find("a", href=True)['href'] title = columns[0].text.strip() difficulty = int(columns[-1].text) problem_info = { 'title': title, 'link': f'https://codeforces.com{name_cell}', 'difficulty': difficulty } problem_list.append(problem_info) return problem_list[:5] # Example usage with min_rating set to 800 and max_rating as variable y problem_set = fetch_problems_by_difficulty(800, y) for p in problem_set: print(f"{p['title']} ({p['difficulty']}) [{p['link']}]") ``` 此Python脚本展示了如何利用BeautifulSoup库解析HTML文档结构,并从中提取满足给定难度区间的前五个编程挑战的信息。 #### 探索高质量的学习资料 除了直接解决问题外,学习者还可以借助一系列精心编写的指南和文章加深理解。这些材料通常由经验丰富的竞赛选手撰写,旨在帮助新手逐步掌握必要的技能和技术要点[^2][^3]。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值