sodoth
sodoth
全部文章
分类
归档
标签
去牛客网
登录
/
注册
sodoth的博客
全部文章
(共2篇)
题解 | 过河
动态规划 #include <climits> #include <iostream> #include <vector> using namespace std; int main() { int l,s,t,m, i, j; cin>&...
2025-04-18
0
20
题解 | 龙与地下城游戏问题
暴力算法 遍历每一条路记录最小血量 #include <algorithm> #include <iostream> #include <vector> using namespace std; int n,m; vector<int> dp; v...
2025-04-17
0
26