摘要: #include<iostream> #include<cstdio> #include<cmath> #include<cstdlib> #include<algorithm> using namespace std; long a, k, p, n; long quc(long a, long 阅读全文
posted @ 2019-11-10 15:10 ATKevin 阅读(96) 评论(0) 推荐(0)
摘要: 迪杰斯特拉+堆优化 #include<bits/stdc++.h> using namespace std; const int MAXN = 100005; const int MAXM = 200005; struct edge{ int to, next; long long w; }e[MA 阅读全文
posted @ 2019-11-10 10:25 ATKevin 阅读(120) 评论(0) 推荐(0)