P1027 (C++代码) 摘要:解题思路:注意事项:参考代码:下面来解释一下这道题刚才天笑看了一下,下面的基本都是用DFS来做的。 天笑这里借用了BFS的思想,每到一个点,就向周围的四个点拓展新节点, 然后选取最优的节点作为下一…… 题解列表 2018年01月07日 0 点赞 0 评论 667 浏览 评分:9.9
P1027 (C语言代码) dfs 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int r,c,max;int a[41][41],b[41][41];void dfs(int x,int y,int sum){ i…… 题解列表 2018年02月13日 0 点赞 0 评论 912 浏览 评分:0.0
P1027 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int r,c; scanf("%d %d", &r, &c); int a[r][c], i, j, su…… 题解列表 2018年08月11日 0 点赞 0 评论 652 浏览 评分:9.9
P1027 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int m, n, a[41][41], i, j, k, l; while (scanf("%…… 题解列表 2019年03月27日 1 点赞 0 评论 535 浏览 评分:0.0
P1027-题解(C语言代码)满分题解!! 摘要: #include int main() { int m, n, a[41][41], i, j, k, l; while (scanf(…… 题解列表 2019年12月23日 0 点赞 0 评论 545 浏览 评分:9.9
爆破爆破 题解 1294: P1027 摘要:解题思路: 直接判四个方向,谁大加谁。注意事项:下标越界直接捕获异常跳,写那判断语句麻烦参考代码:import java.util.Scanner; /** * @author fzy …… 题解列表 2021年10月10日 0 点赞 1 评论 122 浏览 评分:9.9
1294: 木瓜地 摘要:```cpp #include using namespace std; int main() { int m,n,a[41][41],i,j,k,l; while(sca…… 题解列表 2023年04月15日 0 点赞 0 评论 151 浏览 评分:9.9
基础解法(易懂) 摘要:#include<stdio.h> int max(int x,int y) { return x>y?x:y; } int min(int x,int y) { return x>…… 题解列表 2023年09月05日 0 点赞 0 评论 74 浏览 评分:9.9