题目:https://www.cometoj.com/contest/33/problem/G?problem_id=1461(密码:jwjtxdy)

学习一下 求一个数的约数 复杂度n*logn

  1. #include <cstdio>
  2. #include <cstdlib>
  3. #include <cstring>
  4. #include <queue>
  5. #include <vector>
  6. #include <algorithm>
  7. #include <string>
  8. #include <cmath>
  9. #include <iostream>
  10. #define inf 0x3f3f3f3f3f3f3f3f
  11. using namespace std;
  12. typedef long long ll;
  13. const int maxn = 2e5 + ;
  14. struct heapnode
  15. {
  16. int u;
  17. ll d;
  18. heapnode(int u=,ll d=):u(u),d(d){}
  19. bool operator<(const heapnode&a)const
  20. {
  21. return a.d < d;
  22. }
  23. };
  24. vector<int>G[maxn];
  25. vector<int>num[maxn];
  26. ll dis[maxn];
  27. bool vis[maxn];
  28. int a[maxn], b[maxn], c[maxn], n;
  29.  
  30. void dij(int s)
  31. {
  32. for (int i = ; i <= n; i++) dis[i] = inf;
  33. dis[s] = ;
  34. memset(vis, , sizeof(vis));
  35. priority_queue<heapnode>que;
  36. que.push(heapnode(s, ));
  37. while(!que.empty())
  38. {
  39. heapnode x = que.top(); que.pop();
  40. int u = x.u;
  41. if (vis[u]) continue;
  42. vis[u] = ;
  43. for(int i=;i<G[u].size();i++)
  44. {
  45. int now = G[u][i];
  46. if(dis[now]>dis[u]+a[now])
  47. {
  48. dis[now] = dis[u] + a[now];
  49. //printf("www dis[%d]=%lld dis[%d]=%lld\n", now, dis[now],u,dis[u]);
  50. que.push(heapnode(now, dis[now]));
  51. }
  52. }
  53. //printf("c[%d]=%d\n",u, c[u]);
  54. int len = num[c[u]].size();
  55. // printf("%d\n", len);
  56. for(int i=;i<len&&num[c[u]][i]+u<=n;i++)
  57. {
  58. int y = num[c[u]][i] + u;
  59. // printf("y=%d\n", y);
  60. // printf("a[%d]=%d\n", y, a[y]);
  61. if(dis[y]>dis[u]+b[u]+a[y])
  62. {
  63. dis[y] = dis[u] + b[u] + a[y];
  64. // printf("b[%d]=%d a[%d]=%d\n", u, b[u], y, a[y]);
  65. // printf("dis[%d]=%lld dis[%d]=%lld\n", y, dis[y],u,dis[u]);
  66. que.push(heapnode(y, dis[y]));
  67. }
  68. }
  69. }
  70. }
  71.  
  72. int main()
  73. {
  74. for (int i = ; i < maxn; ++i) {
  75. for (int j = i; j < maxn; j += i) {
  76. num[j].push_back(i);//先把每个数的因子有哪些打个表,由调和级数可知复杂度为o(nlog n)
  77. }
  78. }
  79. int v;
  80. scanf("%d", &n);
  81. for(int i=;i<=n;i++)
  82. {
  83. scanf("%d%d%d%d", &a[i], &b[i], &c[i], &v);
  84. G[i].push_back(v);
  85. }
  86. dij();
  87. if (dis[n] >= inf) printf("-1\n");
  88. else printf("%lld\n", dis[n]+a[]);
  89. return ;
  90. }

最短路 西北大学2019年春季校赛 ( 重现赛 ) 房间迷宫 求一个数的所有的约数nlogn的更多相关文章

  1. 2018 ACM 国际大学生程序设计竞赛上海大都会赛重现赛 F Color it

    链接:https://www.nowcoder.com/acm/contest/163/F 来源:牛客网 2018 ACM 国际大学生程序设计竞赛上海大都会赛重现赛 F Color it 时间限制:C ...

  2. 2018 ACMICPC上海大都会赛重现赛 H - A Simple Problem with Integers (线段树,循环节)

    2018 ACM 国际大学生程序设计竞赛上海大都会赛重现赛 H - A Simple Problem with Integers (线段树,循环节) 链接:https://ac.nowcoder.co ...

  3. 2018 ACM 国际大学生程序设计竞赛上海大都会赛重现赛 F Color it (扫描线)

    2018 ACM 国际大学生程序设计竞赛上海大都会赛重现赛 F Color it (扫描线) 链接:https://ac.nowcoder.com/acm/contest/163/F来源:牛客网 时间 ...

  4. 2018 ACM 国际大学生程序设计竞赛上海大都会赛重现赛 J Beautiful Numbers (数位DP)

    2018 ACM 国际大学生程序设计竞赛上海大都会赛重现赛 J Beautiful Numbers (数位DP) 链接:https://ac.nowcoder.com/acm/contest/163/ ...

  5. 2018 ICPC上海大都会赛重现赛 D Thinking-Bear magic (几何)

    2018 ACM 国际大学生程序设计竞赛上海大都会赛重现赛 D Thinking-Bear magic (几何) 链接:https://ac.nowcoder.com/acm/contest/163/ ...

  6. 计蒜客 39280.Travel-二分+最短路dijkstra-二分过程中保存结果,因为二分完最后的不一定是结果 (The 2019 ACM-ICPC China Shannxi Provincial Programming Contest M.) 2019ICPC西安邀请赛现场赛重现赛

    Travel There are nn planets in the MOT galaxy, and each planet has a unique number from 1 \sim n1∼n. ...

  7. 计蒜客 39272.Tree-树链剖分(点权)+带修改区间异或和 (The 2019 ACM-ICPC China Shannxi Provincial Programming Contest E.) 2019ICPC西安邀请赛现场赛重现赛

    Tree Ming and Hong are playing a simple game called nim game. They have nn piles of stones numbered  ...

  8. 2019中山大学程序设计竞赛(重现赛) Clumsy Keke

    Problem Description Keke is currently studying engineering drawing courses, and the teacher has taug ...

  9. 吉首大学2019年程序设计竞赛(重现赛)D - 数列求和(嘤雄难度)

    链接:https://ac.nowcoder.com/acm/contest/992/D $a_{i}=\dfrac {3a_{i-1}-a_{i-2}}{2}+i+1$ 移项再化一下 $a_{i}- ...

随机推荐

  1. java 代码执行cmd 返回值异常 (关于JAVA Project.waitfor()返回值是1)

    关于JAVA Project.waitfor()返回值是1   0条评论 Project.waitfor()返回值是1,找了很久从网上没有发现关于1的说明. 这时对源代码调试了一下,发现Project ...

  2. 从CentOS 7.0升级到7.7版本

    我平时都在VirtualBox上装虚拟机,方法是导入ova镜像文件,比如导入从网上下载的CentOS7-base.ova,该ova为CentOS 7.0版本,而现在最新版本为7.7,为此进入系统后第一 ...

  3. 【图解】你还在为 TCP 重传、滑动窗口、流量控制、拥塞控制发愁吗?看完图解就不愁了

    每日一句英语学习,每天进步一点点: 前言 前一篇「硬不硬你说了算!近 40 张图解被问千百遍的 TCP 三次握手和四次挥手面试题」得到了很多读者的认可,在此特别感谢你们的认可,大家都暖暖的. 来了,今 ...

  4. c++ string类的一些使用

    初始化: string类的初始化是不可以用字符进行的,如; string str='c'; string str('c');必须传递字符串字面量作为参数:string本身是用模板类进行实例化的类. s ...

  5. 用python代替人脑运算24点游戏

    前言 文的文字及图片来源于网络,仅供学习.交流使用,不具有任何商业用途,版权归原作者所有,如有问题请及时联系我们以作处理. 作者:老方玩编程 PS:如有需要Python学习资料的小伙伴可以加点击下方链 ...

  6. Nginx知多少系列之(七)负载均衡策略

    目录 1.前言 2.安装 3.配置文件详解 4.工作原理 5.Linux下托管.NET Core项目 6.Linux下.NET Core项目负载均衡 7.负载均衡策略 8.加权轮询(round rob ...

  7. .NET Core3.1总体预览和第一个Core程序的创建

    小伙伴们大家好!欢迎阅读本贴,这里是常哥说编程的专栏,.NetCore已经出来一段时间了,很多小伙伴可能也开始了学习,但是.NetCore毕竟在学习上和我们常用的.NET Framework还是有很大 ...

  8. 用 Python 黄图批量鉴别审核

    前言 最近写了一款微信小程序需要用到图片审核,人工审核是不可能的人工审核的太费精力了,所以我就写了一个多线程批量识别脚本来处理,主要是调用百度AI的接口,这里我是付费了也不贵审核一条1分钱不到,再说我 ...

  9. 不停机还能替换代码?6年的 Java程序员表示不可思议

    相信很多人都有这样一种感受,自己写的代码在开发.测试环境跑的稳得一笔,可一到线上就抽风,不是缺这个就是少那个反正就是一顿报错,而线上调试代码又很麻烦,让人头疼得很.不过, 阿里巴巴出了一款名叫Arth ...

  10. windows下部署.netcore+docker系列四 (部署程序,重点就要来了)

    前面的都是为这章做准备,加油把骚年们 PS:C# 项目可以按照流程一步步来,java 偶然其他的可以找下其他的网上资源 1.在 VS2019中 添加docker 支持 (其实也就是追加一个Docker ...