OneSidedPentomino.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:3k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.examples.dancing;
  19. /**
  20.  * Of the "normal" 12 pentominos, 6 of them have distinct shapes when flipped.
  21.  * This class includes both variants of the "flippable" shapes and the
  22.  * unflippable shapes for a total of 18 pieces. Clearly, the boards must have
  23.  * 18*5=90 boxes to hold all of the solutions.
  24.  */
  25. public class OneSidedPentomino extends Pentomino {
  26.   public OneSidedPentomino() {}
  27.   public OneSidedPentomino(int width, int height) {
  28.     super(width, height);
  29.   }
  30.   /**
  31.    * Define the one sided pieces. The flipped pieces have the same name with
  32.    * a capital letter.
  33.    */
  34.   protected void initializePieces() {
  35.     pieces.add(new Piece("x", " x /xxx/ x ", false, oneRotation));
  36.     pieces.add(new Piece("v", "x  /x  /xxx", false, fourRotations));
  37.     pieces.add(new Piece("t", "xxx/ x / x ", false, fourRotations));
  38.     pieces.add(new Piece("w", "  x/ xx/xx ", false, fourRotations));
  39.     pieces.add(new Piece("u", "x x/xxx", false, fourRotations));
  40.     pieces.add(new Piece("i", "xxxxx", false, twoRotations));
  41.     pieces.add(new Piece("f", " xx/xx / x ", false, fourRotations));
  42.     pieces.add(new Piece("p", "xx/xx/x ", false, fourRotations));
  43.     pieces.add(new Piece("z", "xx / x / xx", false, twoRotations));
  44.     pieces.add(new Piece("n", "xx  / xxx", false, fourRotations));
  45.     pieces.add(new Piece("y", "  x /xxxx", false, fourRotations));
  46.     pieces.add(new Piece("l", "   x/xxxx", false, fourRotations));
  47.     pieces.add(new Piece("F", "xx / xx/ x ", false, fourRotations));
  48.     pieces.add(new Piece("P", "xx/xx/ x", false, fourRotations));
  49.     pieces.add(new Piece("Z", " xx/ x /xx ", false, twoRotations));
  50.     pieces.add(new Piece("N", "  xx/xxx ", false, fourRotations));
  51.     pieces.add(new Piece("Y", " x  /xxxx", false, fourRotations));
  52.     pieces.add(new Piece("L", "x   /xxxx", false, fourRotations));
  53.   }
  54.   
  55.   /**
  56.    * Solve the 3x30 puzzle.
  57.    * @param args
  58.    */
  59.   public static void main(String[] args) {
  60.     Pentomino model = new OneSidedPentomino(3, 30);
  61.     int solutions = model.solve();
  62.     System.out.println(solutions + " solutions found.");
  63.   }
  64. }