摘要: 分层图最短路,注意按照题意中的“穿过”的定义来模拟。 const int N=1e5+10; struct Node { int dis; int u,cnt; bool operator>(const Node &W) const { return dis>W.dis; } }; vector<P 阅读全文
posted @ 2020-12-02 23:25 Dazzling! 阅读(97) 评论(0) 推荐(0) 编辑