题解 1294: 木瓜地

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

基础解法(易懂)

摘要:#include<stdio.h> int max(int x,int y) { return x>y?x:y; } int min(int x,int y) { return x>……

P1027 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int m, n, a[41][41], i, j, k, l; while (scanf("%……

P1027 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int r,c; scanf("%d %d", &r, &c); int a[r][c], i, j, su……

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……