-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLonelyIsland.java
393 lines (325 loc) · 7.88 KB
/
LonelyIsland.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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
/* NIM/Nama : 13517137/Vincent Budianto
* Nama File : LonelyIsland.java
* Topik : Tugas Kecil II IF2211 - Strategi Algoritma / Penyelesaian Lonely Island dengan Algoritma Decrease and Conquer
* Tanggal : 25 Februari 2019
* Deskripsi : Source code menggunakan strategi algoritma decrease and conquer */
import java.io.*;
import java.util.*;
import java.lang.*;
public class LonelyIsland implements Runnable
{
//Kamus Global
static int m, n, r, from, to, length;
static long count;
static Map Chart;
static String arg1, arg2;
static int[] Check;
static Set<Integer> lonelyIsland;
static Set<Integer> result;
static Set<Integer> route;
static PrintWriter outFile;
static Scanner inFile;
//Class Map
static class Map
{
//Kamus Map
private LinkedList<Integer> Bridge[];
Map(int a)
/* ctor dengan parameter */
{
//Kamus
int i;
//Algoritma
Bridge = new LinkedList[a];
for (i = 0; i < a; i++)
{
Bridge[i] = new LinkedList();
}
}
void addBridge(int from, int to)
/* Prosedur untuk menambahkan jembatan satu arah dari suatu island ke island lain */
{
//Kamus
//Algoritma
Bridge[from].add(to);
}
void stuck(int start)
/* Prosedur untuk mencari island yang tidak memiliki jembatan ke island lain */
{
//Kamus
int i;
//Algoritma
for (i = 1; i <= n; i++)
{
if (Bridge[i].isEmpty())
{
lonelyIsland.add(i);
}
}
}
}
static void printTrack(int from, int to)
/* Prosedur untuk menampilkan seluruh rute yang dapat diambil oleh pemain */
{
//Kamus
//Algoritma
Check = new int[n];
route.add(r);
printRoute(from, to);
}
static void printRoute(int from, int to)
/* Prosedur untuk menampilkan rute yang dapat diambil oleh pemain dari suatu pulau */
{
//Kamus
//Algoritma
Check[from - 1] = 1;
if (from == to)
{
result.add(to);
count++;
Iterator i = route.iterator();
System.out.print("Track " + count + ": ");
System.out.print(i.next());
while (i.hasNext())
{
System.out.print(" -> " + i.next());
}
System.out.println("\n");
if (length == 1)
{
try
{
outFile = new PrintWriter(new FileWriter("output.txt", true));
Iterator j = route.iterator();
outFile.println();
outFile.print("Track " + count + ": ");
outFile.print(j.next());
while (j.hasNext())
{
outFile.print(" -> " + j.next());
}
outFile.println();
outFile.close();
}
catch (Exception e)
{
}
}
else if (length == 2)
{
try
{
outFile = new PrintWriter(new FileWriter(arg2, true));
Iterator j = route.iterator();
outFile.println();
outFile.print("Track " + count + ": ");
outFile.print(j.next());
while (j.hasNext())
{
outFile.print(" -> " + j.next());
}
outFile.println();
outFile.close();
}
catch (Exception e)
{
}
}
}
else
{
for (Integer k: Chart.Bridge[from])
{
if (Check[k - 1] == 0)
{
route.add(k);
printRoute(k, to);
route.remove(k);
}
}
}
Check[from - 1] = 0;
}
//Main Program
public static void main(String[] args)
/* Thread Constructor */
{
new Thread(null, new LonelyIsland(), "", 1 << 26).start();
length = args.length;
if (length == 1)
{
arg1 = args[0];
}
else if (length == 2)
{
arg1 = args[0];
arg2 = args[1];
}
}
//Thread Program
public void run()
{
//Kamus
int s;
float time, startTime, stopTime;
//Algoritma
lonelyIsland = new TreeSet<Integer>(); //Himpunan lonely island terurut membesar
result = new TreeSet<Integer>(); //Himpunan solusi terurut membesar
route = new LinkedHashSet<Integer>(); //Himpunan untuk menyimpan pulau mana yang sudah dikunjungi
count = 0; //jumlah track menuju lonely island
m = 0; //jumlah bridge
n = 0; //jumlah island
r = 0; //start island
from = 0; //island asal
to = 0; //island tujuan
//Proses Baca File
try
{
if (length == 0)
{
inFile = new Scanner(new File("input.txt"));
}
else
{
inFile = new Scanner(new File(arg1));
}
n = inFile.nextInt();
m = inFile.nextInt();
r = inFile.nextInt();
Chart = new Map(n + 1);
while (inFile.hasNext() && (m != 0))
{
from = inFile.nextInt();
to = inFile.nextInt();
Chart.addBridge(from, to);
m--;
}
inFile.close();
}
catch (Exception e)
{
}
//Start time counter
startTime = System.nanoTime();
//Mencari island dimana pemain terjebak
Chart.stuck(r);
//Menuliskan island dimana pemain terjebak
if (lonelyIsland.size() == 0)
{
System.out.println("terdapat " + result.size() + " pulau dimana pemain dapat terjebak jika pemain mulai dari pulau " + r + "\n");
System.out.println("semua pulau saling terhubung\n");
}
else
{
//Inisialisasi file eksternal
if (length == 1)
{
try
{
outFile = new PrintWriter("output.txt", "UTF-8");
if (lonelyIsland.size() != 0)
{
outFile.println("rute yang dapat diambil pemain dari pulau " + r + ":");
}
outFile.close();
}
catch (Exception e)
{
}
}
else if (length == 2)
{
try
{
outFile = new PrintWriter(arg2, "UTF-8");
if (lonelyIsland.size() != 0)
{
outFile.println("rute yang dapat diambil pemain dari pulau " + r + ":");
}
outFile.close();
}
catch (Exception e)
{
}
}
//Menuliskan rute yang dapat diambil dari start island
System.out.println("rute yang dapat diambil pemain dari pulau " + r + ":\n");
Iterator<Integer> k = lonelyIsland.iterator();
s = k.next();
printTrack(r, s);
while (k.hasNext())
{
s = k.next();
printTrack(r, s);
}
Iterator j = result.iterator();
System.out.print("terdapat " + result.size() + " pulau dimana pemain dapat terjebak jika pemain mulai dari pulau " + r + " yaitu di pulau " + j.next());
while (j.hasNext())
{
System.out.print(" atau pulau " + j.next());
}
System.out.println("\n");
}
//Proses penulisan ke file eksternal
if (length == 1)
{
try
{
if (result.size() == 0)
{
outFile = new PrintWriter("output.txt", "UTF-8");
outFile.println("terdapat " + result.size() + " pulau dimana pemain dapat terjebak jika pemain mulai dari pulau " + r);
outFile.println();
outFile.println("semua pulau saling terhubung");
}
else
{
outFile = new PrintWriter(new FileWriter("output.txt", true));
Iterator i = result.iterator();
outFile.println();
outFile.print("terdapat " + result.size() + " pulau dimana pemain dapat terjebak jika pemain mulai dari pulau " + r + " yaitu di pulau yaitu di pulau " + i.next());
while (i.hasNext())
{
outFile.print(" atau pulau " + i.next());
}
}
outFile.close();
}
catch (Exception e)
{
}
}
else if (length == 2)
{
try
{
if (result.size() == 0)
{
outFile = new PrintWriter(arg2, "UTF-8");
outFile.println("terdapat " + result.size() + " pulau dimana pemain dapat terjebak jika pemain mulai dari pulau " + r);
outFile.println();
outFile.println("semua pulau saling terhubung");
}
else
{
outFile = new PrintWriter(new FileWriter(arg2, true));
Iterator i = result.iterator();
outFile.println();
outFile.print("terdapat " + result.size() + " pulau dimana pemain dapat terjebak jika pemain mulai dari pulau " + r + " yaitu di pulau yaitu di pulau " + i.next());
while (i.hasNext())
{
outFile.print(" atau pulau " + i.next());
}
}
outFile.close();
}
catch (Exception e)
{
}
}
//Stop time counter
stopTime = System.nanoTime();
time = (stopTime - startTime) / 1000000000;
System.out.printf("Execution time : %.5f seconds", time);
}
}