蓝桥
FRRE_Y
这个作者很懒,什么都没留下…
展开
-
第八届蓝桥杯——日期问题
#include<cstdio> #include<iostream> #include<algorithm> #include<string> using namespace std; int yyy[3]; struct node { int year,month,day; bool Equal(node b){ ...原创 2018-03-26 11:22:04 · 774 阅读 · 0 评论 -
计蒜客2018蓝桥杯省赛 B 组模拟赛(一)——H:封印之门
其实就是相当于图中找最短路。. 多源最短路用floyd比较好,下面是代码。 #include<cstdio> #include<iostream> #include<string> #include<algorithm> using namespace std; const int INF = 999999; int change[30][30]...原创 2018-03-28 19:18:01 · 250 阅读 · 0 评论