不知77
不知77
全部文章
分类
题解(3)
归档
标签
去牛客网
登录
/
注册
不知77的博客
全部文章
(共1篇)
题解 | #消灭怪物#
暴力递归回溯遍历所有可能的情况: #include<bits/stdc++.h> using namespace std; struct node { int val,line; }; int ans = 1000000+10; vector<node> arr(...
C++
深度优先搜索
2023-01-16
1
418