最短路 西北大学2019年春季校赛 ( 重现赛 ) 房间迷宫 求一个数的所有的约数nlogn
题目:https://www.cometoj.com/contest/33/problem/G?problem_id=1461(密码:jwjtxdy)
学习一下 求一个数的约数 复杂度n*logn
- #include <cstdio>
- #include <cstdlib>
- #include <cstring>
- #include <queue>
- #include <vector>
- #include <algorithm>
- #include <string>
- #include <cmath>
- #include <iostream>
- #define inf 0x3f3f3f3f3f3f3f3f
- using namespace std;
- typedef long long ll;
- const int maxn = 2e5 + ;
- struct heapnode
- {
- int u;
- ll d;
- heapnode(int u=,ll d=):u(u),d(d){}
- bool operator<(const heapnode&a)const
- {
- return a.d < d;
- }
- };
- vector<int>G[maxn];
- vector<int>num[maxn];
- ll dis[maxn];
- bool vis[maxn];
- int a[maxn], b[maxn], c[maxn], n;
- void dij(int s)
- {
- for (int i = ; i <= n; i++) dis[i] = inf;
- dis[s] = ;
- memset(vis, , sizeof(vis));
- priority_queue<heapnode>que;
- que.push(heapnode(s, ));
- while(!que.empty())
- {
- heapnode x = que.top(); que.pop();
- int u = x.u;
- if (vis[u]) continue;
- vis[u] = ;
- for(int i=;i<G[u].size();i++)
- {
- int now = G[u][i];
- if(dis[now]>dis[u]+a[now])
- {
- dis[now] = dis[u] + a[now];
- //printf("www dis[%d]=%lld dis[%d]=%lld\n", now, dis[now],u,dis[u]);
- que.push(heapnode(now, dis[now]));
- }
- }
- //printf("c[%d]=%d\n",u, c[u]);
- int len = num[c[u]].size();
- // printf("%d\n", len);
- for(int i=;i<len&&num[c[u]][i]+u<=n;i++)
- {
- int y = num[c[u]][i] + u;
- // printf("y=%d\n", y);
- // printf("a[%d]=%d\n", y, a[y]);
- if(dis[y]>dis[u]+b[u]+a[y])
- {
- dis[y] = dis[u] + b[u] + a[y];
- // printf("b[%d]=%d a[%d]=%d\n", u, b[u], y, a[y]);
- // printf("dis[%d]=%lld dis[%d]=%lld\n", y, dis[y],u,dis[u]);
- que.push(heapnode(y, dis[y]));
- }
- }
- }
- }
- int main()
- {
- for (int i = ; i < maxn; ++i) {
- for (int j = i; j < maxn; j += i) {
- num[j].push_back(i);//先把每个数的因子有哪些打个表,由调和级数可知复杂度为o(nlog n)
- }
- }
- int v;
- scanf("%d", &n);
- for(int i=;i<=n;i++)
- {
- scanf("%d%d%d%d", &a[i], &b[i], &c[i], &v);
- G[i].push_back(v);
- }
- dij();
- if (dis[n] >= inf) printf("-1\n");
- else printf("%lld\n", dis[n]+a[]);
- return ;
- }
最短路 西北大学2019年春季校赛 ( 重现赛 ) 房间迷宫 求一个数的所有的约数nlogn的更多相关文章
- 2018 ACM 国际大学生程序设计竞赛上海大都会赛重现赛 F Color it
链接:https://www.nowcoder.com/acm/contest/163/F 来源:牛客网 2018 ACM 国际大学生程序设计竞赛上海大都会赛重现赛 F Color it 时间限制:C ...
- 2018 ACMICPC上海大都会赛重现赛 H - A Simple Problem with Integers (线段树,循环节)
2018 ACM 国际大学生程序设计竞赛上海大都会赛重现赛 H - A Simple Problem with Integers (线段树,循环节) 链接:https://ac.nowcoder.co ...
- 2018 ACM 国际大学生程序设计竞赛上海大都会赛重现赛 F Color it (扫描线)
2018 ACM 国际大学生程序设计竞赛上海大都会赛重现赛 F Color it (扫描线) 链接:https://ac.nowcoder.com/acm/contest/163/F来源:牛客网 时间 ...
- 2018 ACM 国际大学生程序设计竞赛上海大都会赛重现赛 J Beautiful Numbers (数位DP)
2018 ACM 国际大学生程序设计竞赛上海大都会赛重现赛 J Beautiful Numbers (数位DP) 链接:https://ac.nowcoder.com/acm/contest/163/ ...
- 2018 ICPC上海大都会赛重现赛 D Thinking-Bear magic (几何)
2018 ACM 国际大学生程序设计竞赛上海大都会赛重现赛 D Thinking-Bear magic (几何) 链接:https://ac.nowcoder.com/acm/contest/163/ ...
- 计蒜客 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. ...
- 计蒜客 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 ...
- 2019中山大学程序设计竞赛(重现赛) Clumsy Keke
Problem Description Keke is currently studying engineering drawing courses, and the teacher has taug ...
- 吉首大学2019年程序设计竞赛(重现赛)D - 数列求和(嘤雄难度)
链接:https://ac.nowcoder.com/acm/contest/992/D $a_{i}=\dfrac {3a_{i-1}-a_{i-2}}{2}+i+1$ 移项再化一下 $a_{i}- ...
随机推荐
- java 代码执行cmd 返回值异常 (关于JAVA Project.waitfor()返回值是1)
关于JAVA Project.waitfor()返回值是1 0条评论 Project.waitfor()返回值是1,找了很久从网上没有发现关于1的说明. 这时对源代码调试了一下,发现Project ...
- 从CentOS 7.0升级到7.7版本
我平时都在VirtualBox上装虚拟机,方法是导入ova镜像文件,比如导入从网上下载的CentOS7-base.ova,该ova为CentOS 7.0版本,而现在最新版本为7.7,为此进入系统后第一 ...
- 【图解】你还在为 TCP 重传、滑动窗口、流量控制、拥塞控制发愁吗?看完图解就不愁了
每日一句英语学习,每天进步一点点: 前言 前一篇「硬不硬你说了算!近 40 张图解被问千百遍的 TCP 三次握手和四次挥手面试题」得到了很多读者的认可,在此特别感谢你们的认可,大家都暖暖的. 来了,今 ...
- c++ string类的一些使用
初始化: string类的初始化是不可以用字符进行的,如; string str='c'; string str('c');必须传递字符串字面量作为参数:string本身是用模板类进行实例化的类. s ...
- 用python代替人脑运算24点游戏
前言 文的文字及图片来源于网络,仅供学习.交流使用,不具有任何商业用途,版权归原作者所有,如有问题请及时联系我们以作处理. 作者:老方玩编程 PS:如有需要Python学习资料的小伙伴可以加点击下方链 ...
- Nginx知多少系列之(七)负载均衡策略
目录 1.前言 2.安装 3.配置文件详解 4.工作原理 5.Linux下托管.NET Core项目 6.Linux下.NET Core项目负载均衡 7.负载均衡策略 8.加权轮询(round rob ...
- .NET Core3.1总体预览和第一个Core程序的创建
小伙伴们大家好!欢迎阅读本贴,这里是常哥说编程的专栏,.NetCore已经出来一段时间了,很多小伙伴可能也开始了学习,但是.NetCore毕竟在学习上和我们常用的.NET Framework还是有很大 ...
- 用 Python 黄图批量鉴别审核
前言 最近写了一款微信小程序需要用到图片审核,人工审核是不可能的人工审核的太费精力了,所以我就写了一个多线程批量识别脚本来处理,主要是调用百度AI的接口,这里我是付费了也不贵审核一条1分钱不到,再说我 ...
- 不停机还能替换代码?6年的 Java程序员表示不可思议
相信很多人都有这样一种感受,自己写的代码在开发.测试环境跑的稳得一笔,可一到线上就抽风,不是缺这个就是少那个反正就是一顿报错,而线上调试代码又很麻烦,让人头疼得很.不过, 阿里巴巴出了一款名叫Arth ...
- windows下部署.netcore+docker系列四 (部署程序,重点就要来了)
前面的都是为这章做准备,加油把骚年们 PS:C# 项目可以按照流程一步步来,java 偶然其他的可以找下其他的网上资源 1.在 VS2019中 添加docker 支持 (其实也就是追加一个Docker ...