蓝桥杯2020年第十一届省赛真题-走方格 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,m,i,j,a[101][101]; scanf("%d %d",&n,&m); …… 题解列表 2022年02月27日 0 点赞 2 评论 448 浏览 评分:9.9
题解 2577: 蓝桥杯2020年第十一届省赛真题-走方格 摘要:#include int dp[32][32]; int main() { int n,m; scanf("%d%d",&n,&m); for(int i = 1;…… 题解列表 2022年03月29日 0 点赞 0 评论 253 浏览 评分:9.9
暴搜 DFS走迷宫 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int N=35,M=35;bool vis[N][N];int ans…… 题解列表 2022年04月08日 0 点赞 0 评论 245 浏览 评分:0.0