摘要: 原题链接 题解 分层图最短路模板题 code #include<bits/stdc++.h> using namespace std; struct Node{ int way,key,value; bool operator >(const Node &a)const{ return value> 阅读全文
posted @ 2024-03-30 00:01 黑屿白 阅读(26) 评论(0) 推荐(0)