1. Now Loading!!!
  2. Time Limit: Second Memory Limit: KB
  3. DreamGrid has integers . DreamGrid also has queries, and each time he would like to know the value of
  4. for a given number , where , .
  5.  
  6. Input
  7. There are multiple test cases. The first line of input is an integer indicating the number of test cases. For each test case:
  8.  
  9. The first line contains two integers and () -- the number of integers and the number of queries.
  10.  
  11. The second line contains integers ().
  12.  
  13. The third line contains integers ().
  14.  
  15. It is guaranteed that neither the sum of all nor the sum of all exceeds .
  16.  
  17. Output
  18. For each test case, output an integer , where is the answer for the -th query.
  19.  
  20. Sample Input
  21.  
  22. Sample Output
  23.  
  24. Author: LIN, Xi
  25. Source: The 15th Zhejiang Provincial Collegiate Programming Contest Sponsored by TuSimple
  26. 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]]

  1. #include<cstdio>
  2. #include<cstring>
  3. #include<cmath>
  4. #include<iostream>
  5. #include<algorithm>
  6. using namespace std;
  7. typedef long long ll;
  8. const int maxn=;
  9. const int mod=1e9;
  10. int a[maxn],p[maxn],k[][maxn];
  11. int n,m;
  12. int main()
  13. {
  14. int t,flag[maxn],cnt;
  15. scanf("%d",&t);
  16. while(t--)
  17. {
  18. scanf("%d %d",&n,&m);
  19. for(int i=; i<=n; i++)
  20. scanf("%d",&a[i]);
  21. sort(a+,a+n+);
  22. for(int i=; i<=m; i++)
  23. scanf("%d",&p[i]);
  24. for(int i=; i<=; i++)
  25. {
  26. k[i][]=;
  27. for(int j=; j<=n; j++)
  28. {
  29. k[i][j]=(k[i][j-]+(a[j]/i))%mod;
  30. }
  31. }
  32. ll sum=,ans;
  33. ll temp;
  34. for(int i=; i<=m; i++)
  35. {
  36. temp=;
  37. cnt=;
  38. ans=;
  39. while(temp*p[i]<=a[n])
  40. {
  41. temp*=p[i];
  42. int l=,r=n;
  43. while(l<=r)
  44. {
  45. int mid=(l+r)/;
  46. if(a[mid]<=temp)
  47. l=mid+;
  48. else
  49. r=mid-;
  50. }
  51. flag[++cnt]=r;
  52. }
  53. if(flag[cnt]<n)
  54. flag[++cnt]=n;
  55. for(int j=; j<=cnt; j++)
  56. {
  57. ans=(ans+(k[j][flag[j]]-k[j][flag[j-]]))%mod;
  58. }
  59. sum=(sum+ans*i)%mod;
  60. }
  61. printf("%lld\n",(sum+mod)%mod);
  62. }
  63. return ;
  64. }

浙江省赛 ZOJ4029的更多相关文章

  1. ZOJ 3879 Capture the Flag 15年浙江省赛K题

    每年省赛必有的一道模拟题,描述都是非常的长,题目都是蛮好写的... sigh... 比赛的时候没有写出这道题目 :( 题意:首先输入4个数,n,q,p,c代表有n个队伍,q个服务器,每支队伍的初始分数 ...

  2. The 13th Zhejiang Provincial Collegiate Contest(2016年浙江省赛)

      前4道水题就不说了,其中我做了C题,1Y,小心仔细写代码并且提交之前得确认无误后提交才能减少出错率. 结果后面2题都由波神做掉,学长带我们飞~ 终榜 官方题解   ZOJ 3946 Highway ...

  3. ZOJ 3872 Beauty of Array DP 15年浙江省赛D题

    也是一道比赛时候没有写出来的题目,队友想到了解法不过最后匆匆忙忙没有 A 掉 What a pity... 题意:定义Beauty数是一个序列里所有不相同的数的和,求一个序列所有字序列的Beauty和 ...

  4. (2017浙江省赛E)Seven Segment Display

    Seven Segment Display Time Limit: 2 Seconds      Memory Limit: 65536 KB A seven segment display, or ...

  5. 浙江省赛 C What Kind of Friends Are You?

    思路:一开始考虑n个朋友可以有c种可能,根据回答的问题,如果是yes那么可以确定一些朋友的范围,将原本不在这个范围内的删除即可:如果是"no",说明这些朋友都应该被删除,那么最后看 ...

  6. 浙江省赛之Singing Everywhere

    题目:http://acm.zju.edu.cn/onlinejudge/showContestProblem.do?problemId=5996 方法: 在大佬的指导下完成. 寻找峰值,找到一共k个 ...

  7. 2019浙江省赛B zoj4101 Element Swapping(推公式)

    http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=6003 题意 \(数组a通过交换一对数字,得到了b数组,给出x=\sum^n_{ ...

  8. 2019浙江省赛K zoj4110 Strings in the Pocket(manachar)

    http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=6012 题意 给你两个串,可以翻转a串的一个区间,问有多少对l,r使得翻转后的a ...

  9. 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 ...

随机推荐

  1. 初识unittest

    unittest是python自带的一个标准木块,单元测试框架 unittest基本使用方法: 我们需要先导入unittest (import unittest) import unittest 定义 ...

  2. 1.1 vue.js devtools使用教程

    1. vue.js devtools使用教程

  3. 搭建Nuget服务器

    1.新建一个web网站应用程序 (最好是ASP.NET空Web应用程序) 2.通过NuGet扩展 引用 NuGet.Server包 引用之后的项目结构为 将此网站部署到IIS上,即可访问,既搭建好了 ...

  4. WebAPI使用Token进行验证

    1.需要用到的包  可以先敲代码   发现没有包在添加 2.在项目根目录下Web层添加“Startup”类   这个是Token的配置 3.在WebAPI层添加WebApiConfig类  也是Tok ...

  5. 《剑指offer》第四十二题(连续子数组的最大和)

    // 面试题42:连续子数组的最大和 // 题目:输入一个整型数组,数组里有正数也有负数.数组中一个或连续的多个整 // 数组成一个子数组.求所有子数组的和的最大值.要求时间复杂度为O(n). #in ...

  6. 用友u8采购发票如何取消审核

    流程是应付系统---应付单据审核---过滤---选择日期+已审---选择相应发票---弃审

  7. nodejs初识

    提到nodejs总离不开npm,因此首先要学些和了解npm.而对于npm.nodejs的了解都来源于菜鸟教程. nodejs学习地址:http://www.runoob.com/nodejs/node ...

  8. Learn Python3 the hard way 第二天总结 命令行(2)

    复制文件 命令:cp含义:很简单,就是把一个文件复制成一个新文件而已.使用 cp -r命令可以复制一些包含文件的目录 移动文件 命令:mv含义:对文件进行"rename". 查看文 ...

  9. 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 ...

  10. 广播小案例-监听系统网络状态 --Android开发

    本例通过广播实现简单的监听系统网络状态改变的小案例. 1.案例效果演示 当手机连网后,系统提示“已连接网络”, 当手机断网后,系统提示“当前网络不可用”. 2.案例实现 在主活动中动态注册广播,然后写 ...