2019 年百度之星·程序设计大赛
P.S:关于初赛二,在高铁上打代码真是奇怪的体验!!! 1003,1004的题解很不错,学习了! =========================================== 一开场把所有的题目看了一遍,这题面风格,感觉凉凉。还好,往下做时,题目不是太坑。 1002 floyd转dijkstra+堆优化,感觉是套路题了 1 #include <cstdio> 2 #include <cstdlib> 3 #include <cmath> 4 #include <cstring> 5 #include < string > 6 #include <algorithm> 7 #include <iostream> 8 using namespace std; 9 #define ll long long 10 #include <queue> 11 12 const double eps=1e- 8 ; 13 const ll inf= 1e9; 14 const ll mod= 998244353 ; 15 const int maxn=1e3+ 10 ; 16 17 struct node 18 { 19 int d; 20 ll len; 21 node * to; 22 }* e[maxn]; 23 24 struct rec 25 { 26 int d,maxd;