-
Notifications
You must be signed in to change notification settings - Fork 0
/
Maze.java
189 lines (178 loc) · 5.75 KB
/
Maze.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
import java.util.Stack;
import java.util.logging.Level;
import java.util.logging.Logger;
public class Maze {
//Atributos
private int f;
private int c;
private int[][] laberinto;
private Stack p;
//Metodos
public Maze(){
Scanner in = new Scanner(System.in);
f=in.nextInt();
c=in.nextInt();
laberinto= new int[(f+f-1)][(c+c-1)];
p=new Stack();
}
public void init(){
for (int i=0; i<f+f-1; i++){
for (int j=0; j<c+c-1; j++){
laberinto[i][j]=-1;
}
}
}
public void dfs (Par nodo){
Par par;
Par base=new Par(0,0);
Par origen, destino;
int id=0;
int rand;
float prob;
char dir;
char ant='X';
Stack q= new Stack();
List direcciones= new ArrayList();
p.push(nodo);
q.push(base);
while(!p.empty()){
direcciones.add('N');
direcciones.add('S');
direcciones.add('O');
direcciones.add('E');
nodo=(Par)p.peek();
laberinto[nodo.x()][nodo.y()]=id++;
q.pop();
p.pop();
while (!direcciones.isEmpty()){
rand= (int)(Math.random()*direcciones.size());
dir=direcciones.get(rand).toString().charAt(0);
direcciones.remove(rand);
if (dir=='N'){ //Revisar valores porque hay error
if (nodo.x()>1 && laberinto[nodo.x()-2][nodo.y()]==-1){
par= new Par ((nodo.x())-2,nodo.y());
base= new Par (nodo.x(), nodo.y());
p.push(par);
q.push(base);
//laberinto[nodo.x()-1][nodo.y()]=id;
//laberinto[nodo.x()-2][nodo.y()]=-2;
}
}
if (dir=='S'){
if (nodo.x()<f+f-2 && laberinto[nodo.x()+2][nodo.y()]==-1){
par= new Par(nodo.x()+2, nodo.y());
base= new Par (nodo.x(), nodo.y());
p.push(par);
q.push(base);
//laberinto[nodo.x()+1][nodo.y()]=id;
//laberinto[nodo.x()+2][nodo.y()]=-2;
}
}
if (dir=='O'){
if (nodo.y()>0 && laberinto[nodo.x()][nodo.y()-2]==-1){
par= new Par(nodo.x(), nodo.y()-2);
base= new Par (nodo.x(), nodo.y());
p.push(par);
q.push(base);
//laberinto[nodo.x()][nodo.y()-1]=id;
//laberinto[nodo.x()][nodo.y()-2]=-2;
}
}
if (dir=='E'){
if (nodo.y()<c+c-2 && laberinto[nodo.x()][nodo.y()+2]==-1){
par= new Par(nodo.x(), nodo.y()+2);
base= new Par (nodo.x(), nodo.y());
p.push(par);
q.push(base);
//laberinto[nodo.x()][nodo.y()+1]=id;
//laberinto[nodo.x()][nodo.y()+2]=-2;
}
}
}
if (!q.isEmpty()){
origen=(Par)q.peek(); //error
destino=(Par)p.peek();
if ( laberinto[destino.x()][destino.y()]==-1){
if (origen.x()>destino.x() && origen.y()==destino.y()){ //Norte
laberinto[origen.x()-1][origen.y()]=id;
}
if (origen.x()<destino.x() && origen.x()==origen.x()){ //Sur
laberinto[origen.x()+1][origen.y()]=id;
}
if (origen.x()==destino.x() && origen.y()>destino.y()){
laberinto[origen.x()][origen.y()-1]=id;
}
if (origen.x()==destino.x() && origen.y()<destino.y()){
laberinto[origen.x()][origen.y()+1]=id;
}
}
}
}
}
public void pr(){
PrintWriter out = null;
int i;
try {
out = new PrintWriter(new FileWriter("Lab.pbm"));
out.println("P1");
out.println((2*c-1+2)+" "+(2*f-1+2));
for (i=0; i<2*c-1+2;i++){
out.print("1");
}
for (i=0; i<2*f-1; i++){
out.print("\n");
out.print("1");
for (int j=0; j<2*c-1; j++){
if (laberinto[i][j]!=-1) out.print("0");
if (laberinto[i][j]==-1) out.print("1");
}
out.print("1");
}
out.print("\n");
for (i=0; i<2*c-1+2;i++){
out.print("1");
}
} catch (IOException ex) {
Logger.getLogger(Maze.class.getName()).log(Level.SEVERE, null, ex);
} finally {
out.close();
}
}
public static void main(String[] args) {
Maze laberinto= new Maze();
laberinto.init();
Par nodo=new Par(0,0);
laberinto.dfs(nodo);
laberinto.pr();
}
}
class Par{
private int x;
private int y;
public Par(int x, int y){
this.x=x;
this.y=y;
}
public int x(){
return x;
}
public int y(){
return y;
}
public void x(int a){
x=a;
}
public void y(int a){
y=a;
}
}