main_testing4/knight3.scala
author Christian Urban <christian.urban@kcl.ac.uk>
Thu, 10 Nov 2022 09:52:40 +0000
changeset 438 a02e9efd7bc9
parent 430 4029552de5fc
permissions -rw-r--r--
updated
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
220
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     1
// Part 3 about finding a single tour using the Warnsdorf Rule
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     2
//=============================================================
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     3
403
312c9eb39ad8 updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 347
diff changeset
     4
object M4c { // for preparing the jar
220
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     5
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     6
type Pos = (Int, Int)
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     7
type Path = List[Pos]
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     8
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     9
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    10
// for measuring time in the JAR
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    11
def time_needed[T](code: => T) : T = {
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    12
  val start = System.nanoTime()
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    13
  val result = code
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    14
  val end = System.nanoTime()
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    15
  println(f"Time needed: ${(end - start) / 1.0e9}%3.3f secs.")
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    16
  result
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    17
}
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    18
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    19
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    20
def print_board(dim: Int, path: Path): Unit = {
347
0b727d1a8184 updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 296
diff changeset
    21
  println()
220
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    22
  for (i <- 0 until dim) {
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    23
    for (j <- 0 until dim) {
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    24
      print(f"${path.reverse.indexOf((i, j))}%4.0f ")
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    25
    }
347
0b727d1a8184 updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 296
diff changeset
    26
    println()
220
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    27
  } 
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    28
}
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    29
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    30
def add_pair(x: Pos, y: Pos): Pos = 
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    31
  (x._1 + y._1, x._2 + y._2)
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    32
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    33
def is_legal(dim: Int, path: Path, x: Pos): Boolean = 
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    34
  0 <= x._1 && 0 <= x._2 && x._1 < dim && x._2 < dim && !path.contains(x)
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    35
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    36
def moves(x: Pos): List[Pos] = 
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    37
  List(( 1,  2),( 2,  1),( 2, -1),( 1, -2),
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    38
       (-1, -2),(-2, -1),(-2,  1),(-1,  2)).map(add_pair(x, _))
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    39
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    40
def legal_moves(dim: Int, path: Path, x: Pos): List[Pos] = 
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    41
  moves(x).filter(is_legal(dim, path, _))
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    42
 
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    43
def ordered_moves(dim: Int, path: Path, x: Pos): List[Pos] = 
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    44
  legal_moves(dim, path, x).sortBy((x) => legal_moves(dim, path, x).length)
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    45
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    46
import scala.annotation.tailrec
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    47
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    48
@tailrec
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    49
def tour_on_mega_board_aux(dim: Int, paths: List[Path]): Option[Path] = paths match {
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    50
  case Nil => None
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    51
  case (path::rest) =>
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    52
    if (path.length == dim * dim) Some(path)
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    53
    else tour_on_mega_board_aux(dim, ordered_moves(dim, path, path.head).map(_::path) ::: rest)
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    54
}
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    55
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    56
def ttour_on_mega_board(dim: Int, path: Path): Option[Path] =
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    57
  tour_on_mega_board_aux(dim, List(path))
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    58
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    59
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    60
def tour_on_mega_board(dim: Int, path: Path) =
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    61
  time_needed(ttour_on_mega_board(dim: Int, path: Path))
1c47cede8e71 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    62
403
312c9eb39ad8 updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 347
diff changeset
    63
312c9eb39ad8 updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 347
diff changeset
    64
// testcases
312c9eb39ad8 updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 347
diff changeset
    65
//print_board(70, tour_on_mega_board(70, List((0, 0))).get)
312c9eb39ad8 updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 347
diff changeset
    66
430
4029552de5fc updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 403
diff changeset
    67
4029552de5fc updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 403
diff changeset
    68
296
4e5bc75cdbd3 updated
Christian Urban <urbanc@in.tum.de>
parents: 220
diff changeset
    69
}
430
4029552de5fc updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 403
diff changeset
    70
4029552de5fc updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 403
diff changeset
    71
4029552de5fc updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 403
diff changeset
    72
//val dim = 30 //75
4029552de5fc updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 403
diff changeset
    73
//M4c.print_board(dim, M4c.tour_on_mega_board(dim, List((0, 0))).get)