摘要: #include <bits/stdc++.h> using namespace std; #define int long long const int maxn = 3e3 + 10; int n,a[maxn]; int solve(int l,int r){ int minn = 1e9 + 阅读全文
posted @ 2020-05-02 19:43 Hazelxcf 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 注意:题目说了,所有道路单行 所以了两次迪杰斯特拉 #include <bits/stdc++.h> using namespace std; const int nn = 1e3 + 5; const int mm = 1e5 + 5; int d[nn],head[nn],ver[mm],edg 阅读全文
posted @ 2020-05-02 12:14 Hazelxcf 阅读(151) 评论(0) 推荐(0) 编辑