摘要: 题目链接: 本题显然考查 \(\rm DFS\),但需注意是否恢复现场和参数设置的细节。 #include <cstdio> #include <algorithm> const int N = 15; struct Edge { int sour; int sweet; }e[N]; bool s 阅读全文
posted @ 2024-04-02 09:21 胖柚の工作室 阅读(21) 评论(0) 推荐(0)