Lab8-Puzzle15


5530277321  นายเธียรฉาย เรียงวิวัฒน์ (COM22023) (2/19/2013 (11:44:12 AM))

MiniQuiz + TestScript
JLab>javac FifteenPuzzle.java
JLab>
JLab>java Selftest 

JLab> testPuzzle15 : ok ok ok ok ok ok ok ok ok ok  (10.0/10.0)
JLab> : -----------------------------
JLab> : ?????? 10.0 ????? (???? 10.0)
JLab> : -----------------------------
JLab> :<POINT>10.0</POINT> (<TOTAL>10.0</TOTAL> )
JLab>

ได้ 10 คะแนน
Source Code
public class FifteenPuzzle {
  //---------------------------------------------------
  public static boolean solvable15Puzzle(int[][] b) {
    int L = 0;
    int B = 0;
    int[] a = new int[15];
    int count = 0;
    for (int i = 0; i < b.length; i++) {
      for (int j = 0; j < b[i].length; j++) {
        if (b[i][j] != 0) a[count++] = b[i][j];
        else B = i + 1;            
      }
    }
    for (int i = 0; i < a.length; i++) {
      for (int j = 1; i + j < a.length; j++) {
        if (a[i] > a[i + j]) L++;
      }
    }   
    if ((B + L) % 2 == 0) return true;
    else return false;
  }
  //---------------------------------------------------
  public static void main(String[] a) {
    int[][] ok = { { 1, 2, 3, 4 },
                    { 5, 6, 7, 8 },
                    { 9, 10, 12, 15 },
                    { 13, 14, 11, 0 } };
    int[][] nok = { { 1, 2, 3, 4 },
                    { 5, 6, 7, 8 },
                    { 9, 10, 11, 12 },
                    { 13, 15, 14, 0 } };
    System.out.println(solvable15Puzzle(ok));
    System.out.println(solvable15Puzzle(nok));

  }
}

SM=0, CM=83, ST=43, KY=1760, TR=60:00
ERR = 60:00 ;