poj1979专题

HDU1312 / POJ1979 / ZOJ2165 Red and Black(红与黑) 解题报告

题目链接:HDU1312 / POJ1979 / ZOJ2165 Red and Black(红与黑) Red and Black Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 9902    Accepted Submiss

poj1979 测试用例全通过,但提交就是WA,无解。

Hello,everybody,我是越爱越难,最近做POJ1979,提交时总是WA,所有的测试数据都通过了,我自己又反复看了几遍代码,感觉没毛病,扎心了!望老铁们来帮我一把!以下附上我写的Java代码。 import java.util.Scanner;public class CopyOfRedAndBlack {static int m,n;static char[][] c = new c

poj 2386 poj1562 poj1979 图的遍历 八个方向和四个方向 深搜

三个题基本上就是一样的思路,学到了怎么遍历四个方向和八个方向count初始化 poj1562#include<stdio.h>#include<string.h>int w,h;char a[105][105];void mi_gong(int x,int y){a[x][y]='*';int tempx;int tempy;for(int k=-1;k<=1;k++){for(in

poj1979

简单的dfs #include <iostream>#include <cstring>using namespace std;const int MAX_V = 25;int w, h, res;char maze[MAX_V][MAX_V];bool used[MAX_V][MAX_V];int dx[4] = {-1, 1, 0, 0};int dy[4] = {0, 0, -1,