Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen der Seite angezeigt.
Nächste Überarbeitung | Vorherige Überarbeitung | ||
faecher:informatik:oberstufe:java:aoc:aco2023:day10:start [10.12.2023 17:19] – angelegt Marco Kuemmel | faecher:informatik:oberstufe:java:aoc:aco2023:day10:start [10.12.2023 17:41] (aktuell) – Marco Kuemmel | ||
---|---|---|---|
Zeile 147: | Zeile 147: | ||
++++ | ++++ | ||
+ | ===== Hilfestellung Teil 2 ===== | ||
+ | Teil 2 ist recht knifflig und benötigt die verzwickte Überprüfung von Bedingungen. | ||
+ | * Erstelle gleich zu Beginn ein weiteres boolean[][] Array, in welchem du später beim Durchlaufen des Loops alle Koordinaten auf true setzt, die dem gelaufenen Pfad entsprechen. | ||
+ | * Nachdem du die Startkoordinaten von " | ||
+ | * Wenn du den ganzen Loop durchlaufen hast, dann musst du beginnen, sämtliche Character nochmals zeilenweise zu betrachten. | ||
+ | * Speichere dir pro Zeile in einer boolean-Variablen, | ||
+ | * Wenn du aktuell auf einer Koordinate bist, die du im boolean-Array **nicht** als Pfad markiert hast, dann wird dein inside-Zähler um eins erhöht, falls deine eben erstellte boolean-Variable anzeigt, dass du //inside// bist. Sonst gehst du mit '' | ||
+ | * Andernfalls (du bist auf einem Pfad) musst je nach Character '' | ||
+ | * Wenn '' | ||
+ | * Wenn '' | ||
+ | * Wenn '' | ||
+ | * Wenn '' | ||
+ | * Wenn die Sequenz mit '' | ||
+ | * Wenn die Sequenz hingegen mit '' | ||
+ | * Wenn '' | ||
+ | |||
+ | ++++ Lösungsvorschlag | | ||
+ | <code java> | ||
+ | public int partTwo() { | ||
+ | welt = new char[inputLines.get(0).length()][inputLines.size()]; | ||
+ | boolean[][] pfad = new boolean[inputLines.get(0).length()][inputLines.size()]; | ||
+ | | ||
+ | int nextX = 0; | ||
+ | int nextY = 0; | ||
+ | | ||
+ | for (int y = 0; y < inputLines.size(); | ||
+ | String line = inputLines.get(y); | ||
+ | char[] chars = line.toCharArray(); | ||
+ | for (int x = 0; x < chars.length; | ||
+ | if (chars[x] == ' | ||
+ | nextX = x; | ||
+ | nextY = y; | ||
+ | } | ||
+ | welt[x][y] = chars[x]; | ||
+ | } | ||
+ | } | ||
+ | | ||
+ | // finde die Startrichtungen | ||
+ | ArrayList< | ||
+ | char nextDir = startDirs.get(0); | ||
+ | |||
+ | // ersetzte ' | ||
+ | if (startDirs.contains(' | ||
+ | welt[nextX][nextY] = ' | ||
+ | } else if (startDirs.contains(' | ||
+ | welt[nextX][nextY] = ' | ||
+ | } else if (startDirs.contains(' | ||
+ | welt[nextX][nextY] = ' | ||
+ | } else if (startDirs.contains(' | ||
+ | welt[nextX][nextY] = ' | ||
+ | } else if (startDirs.contains(' | ||
+ | welt[nextX][nextY] = ' | ||
+ | } else if (startDirs.contains(' | ||
+ | welt[nextX][nextY] = ' | ||
+ | } | ||
+ | | ||
+ | int startX = nextX; | ||
+ | int startY = nextY; | ||
+ | | ||
+ | int steps = 1; | ||
+ | do { | ||
+ | pfad[nextX][nextY] = true; | ||
+ | if (nextDir == ' | ||
+ | nextY--; | ||
+ | nextDir = getDirection(' | ||
+ | } else if (nextDir == ' | ||
+ | nextX++; | ||
+ | nextDir = getDirection(' | ||
+ | } else if (nextDir == ' | ||
+ | nextY++; | ||
+ | nextDir = getDirection(' | ||
+ | } else if (nextDir == ' | ||
+ | nextX--; | ||
+ | nextDir = getDirection(' | ||
+ | } else { | ||
+ | // Zum Fehler ausgeben | ||
+ | System.out.println(nextDir + " " + nextX + " " + nextY); | ||
+ | } | ||
+ | } while (nextX != startX || nextY != startY); | ||
+ | |||
+ | int countInside = 0; | ||
+ | for (int y = 0; y < inputLines.size(); | ||
+ | boolean outside = true; | ||
+ | char pathBegin = ' | ||
+ | for (int x = 0; x < inputLines.get(0).length(); | ||
+ | if (!pfad[x][y]) { | ||
+ | if (outside) { | ||
+ | continue; | ||
+ | } else { | ||
+ | countInside++; | ||
+ | } | ||
+ | } else { | ||
+ | char c = welt[x][y]; | ||
+ | if (c == ' | ||
+ | outside = !outside; | ||
+ | } else if (c == ' | ||
+ | pathBegin = c; | ||
+ | } else if (c == ' | ||
+ | continue; | ||
+ | } else if (c == ' | ||
+ | if (pathBegin == ' | ||
+ | continue; | ||
+ | } else if (pathBegin == ' | ||
+ | outside = !outside; | ||
+ | } | ||
+ | } else if (c == ' | ||
+ | if (pathBegin == ' | ||
+ | outside = !outside; | ||
+ | } else if (pathBegin == ' | ||
+ | continue; | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | | ||
+ | return countInside; | ||
+ | } | ||
+ | </ | ||
+ | ++++ | ||
</ | </ | ||
</ | </ |