浙江省赛 ZOJ4029
- Now Loading!!!
- Time Limit: Second Memory Limit: KB
- DreamGrid has integers . DreamGrid also has queries, and each time he would like to know the value of
- for a given number , where , .
- Input
- There are multiple test cases. The first line of input is an integer indicating the number of test cases. For each test case:
- The first line contains two integers and () -- the number of integers and the number of queries.
- The second line contains integers ().
- The third line contains integers ().
- It is guaranteed that neither the sum of all nor the sum of all exceeds .
- Output
- For each test case, output an integer , where is the answer for the -th query.
- Sample Input
- Sample Output
- Author: LIN, Xi
- Source: The 15th Zhejiang Provincial Collegiate Programming Contest Sponsored by TuSimple
- Submit Status
这题前缀和+二分
我们发现分母只有1-30;
我们构造一个sum/i(i-30)
二分查找 a^(i -1)<p<a^(i) 分母 就是 i
你就把a[i]分成30段。
用flag 去保存位子。
每一段就是 k[j][flag[j]]-k[j][flag[j-1]]
- #include<cstdio>
- #include<cstring>
- #include<cmath>
- #include<iostream>
- #include<algorithm>
- using namespace std;
- typedef long long ll;
- const int maxn=;
- const int mod=1e9;
- int a[maxn],p[maxn],k[][maxn];
- int n,m;
- int main()
- {
- int t,flag[maxn],cnt;
- scanf("%d",&t);
- while(t--)
- {
- scanf("%d %d",&n,&m);
- for(int i=; i<=n; i++)
- scanf("%d",&a[i]);
- sort(a+,a+n+);
- for(int i=; i<=m; i++)
- scanf("%d",&p[i]);
- for(int i=; i<=; i++)
- {
- k[i][]=;
- for(int j=; j<=n; j++)
- {
- k[i][j]=(k[i][j-]+(a[j]/i))%mod;
- }
- }
- ll sum=,ans;
- ll temp;
- for(int i=; i<=m; i++)
- {
- temp=;
- cnt=;
- ans=;
- while(temp*p[i]<=a[n])
- {
- temp*=p[i];
- int l=,r=n;
- while(l<=r)
- {
- int mid=(l+r)/;
- if(a[mid]<=temp)
- l=mid+;
- else
- r=mid-;
- }
- flag[++cnt]=r;
- }
- if(flag[cnt]<n)
- flag[++cnt]=n;
- for(int j=; j<=cnt; j++)
- {
- ans=(ans+(k[j][flag[j]]-k[j][flag[j-]]))%mod;
- }
- sum=(sum+ans*i)%mod;
- }
- printf("%lld\n",(sum+mod)%mod);
- }
- return ;
- }
浙江省赛 ZOJ4029的更多相关文章
- ZOJ 3879 Capture the Flag 15年浙江省赛K题
每年省赛必有的一道模拟题,描述都是非常的长,题目都是蛮好写的... sigh... 比赛的时候没有写出这道题目 :( 题意:首先输入4个数,n,q,p,c代表有n个队伍,q个服务器,每支队伍的初始分数 ...
- The 13th Zhejiang Provincial Collegiate Contest(2016年浙江省赛)
前4道水题就不说了,其中我做了C题,1Y,小心仔细写代码并且提交之前得确认无误后提交才能减少出错率. 结果后面2题都由波神做掉,学长带我们飞~ 终榜 官方题解 ZOJ 3946 Highway ...
- ZOJ 3872 Beauty of Array DP 15年浙江省赛D题
也是一道比赛时候没有写出来的题目,队友想到了解法不过最后匆匆忙忙没有 A 掉 What a pity... 题意:定义Beauty数是一个序列里所有不相同的数的和,求一个序列所有字序列的Beauty和 ...
- (2017浙江省赛E)Seven Segment Display
Seven Segment Display Time Limit: 2 Seconds Memory Limit: 65536 KB A seven segment display, or ...
- 浙江省赛 C What Kind of Friends Are You?
思路:一开始考虑n个朋友可以有c种可能,根据回答的问题,如果是yes那么可以确定一些朋友的范围,将原本不在这个范围内的删除即可:如果是"no",说明这些朋友都应该被删除,那么最后看 ...
- 浙江省赛之Singing Everywhere
题目:http://acm.zju.edu.cn/onlinejudge/showContestProblem.do?problemId=5996 方法: 在大佬的指导下完成. 寻找峰值,找到一共k个 ...
- 2019浙江省赛B zoj4101 Element Swapping(推公式)
http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=6003 题意 \(数组a通过交换一对数字,得到了b数组,给出x=\sum^n_{ ...
- 2019浙江省赛K zoj4110 Strings in the Pocket(manachar)
http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=6012 题意 给你两个串,可以翻转a串的一个区间,问有多少对l,r使得翻转后的a ...
- 140 - The 12th Zhejiang Provincial Collegiate Programming Contest(浙江省赛2015)
Ace of Aces Time Limit: 2 Seconds Memory Limit: 65536 KB There is a mysterious organization c ...
随机推荐
- 初识unittest
unittest是python自带的一个标准木块,单元测试框架 unittest基本使用方法: 我们需要先导入unittest (import unittest) import unittest 定义 ...
- 1.1 vue.js devtools使用教程
1. vue.js devtools使用教程
- 搭建Nuget服务器
1.新建一个web网站应用程序 (最好是ASP.NET空Web应用程序) 2.通过NuGet扩展 引用 NuGet.Server包 引用之后的项目结构为 将此网站部署到IIS上,即可访问,既搭建好了 ...
- WebAPI使用Token进行验证
1.需要用到的包 可以先敲代码 发现没有包在添加 2.在项目根目录下Web层添加“Startup”类 这个是Token的配置 3.在WebAPI层添加WebApiConfig类 也是Tok ...
- 《剑指offer》第四十二题(连续子数组的最大和)
// 面试题42:连续子数组的最大和 // 题目:输入一个整型数组,数组里有正数也有负数.数组中一个或连续的多个整 // 数组成一个子数组.求所有子数组的和的最大值.要求时间复杂度为O(n). #in ...
- 用友u8采购发票如何取消审核
流程是应付系统---应付单据审核---过滤---选择日期+已审---选择相应发票---弃审
- nodejs初识
提到nodejs总离不开npm,因此首先要学些和了解npm.而对于npm.nodejs的了解都来源于菜鸟教程. nodejs学习地址:http://www.runoob.com/nodejs/node ...
- Learn Python3 the hard way 第二天总结 命令行(2)
复制文件 命令:cp含义:很简单,就是把一个文件复制成一个新文件而已.使用 cp -r命令可以复制一些包含文件的目录 移动文件 命令:mv含义:对文件进行"rename". 查看文 ...
- English trip V1 - B 14. There Are Flowers in My Office 我办公室里有花 Teacher:Lamb Key: There be(is/are)
In this lesson you will learn to describe a room or place. 这节课讲学习描述一个房间或地方 课上内容(Lesson) 1. Where do ...
- 广播小案例-监听系统网络状态 --Android开发
本例通过广播实现简单的监听系统网络状态改变的小案例. 1.案例效果演示 当手机连网后,系统提示“已连接网络”, 当手机断网后,系统提示“当前网络不可用”. 2.案例实现 在主活动中动态注册广播,然后写 ...