Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.chocosolver.samples.integer.Nonogram Maven / Gradle / Ivy
/**
* Copyright (c) 2015, Ecole des Mines de Nantes
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the .
* 4. Neither the name of the nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY ''AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.chocosolver.samples.integer;
import org.chocosolver.samples.AbstractProblem;
import org.chocosolver.solver.Solver;
import org.chocosolver.solver.constraints.IntConstraintFactory;
import org.chocosolver.solver.constraints.nary.automata.FA.FiniteAutomaton;
import org.chocosolver.solver.constraints.nary.automata.FA.IAutomaton;
import org.chocosolver.solver.search.strategy.IntStrategyFactory;
import org.chocosolver.solver.variables.BoolVar;
import org.chocosolver.solver.variables.VariableFactory;
import org.chocosolver.util.tools.ArrayUtils;
import org.kohsuke.args4j.Option;
import javax.swing.*;
import java.awt.*;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.image.ImageObserver;
import java.awt.image.PixelGrabber;
import java.io.IOException;
/**
* CSPLib prob012:
* "Nonograms are a popular puzzles, which goes by different names in different countries.
* Solvers have to shade in squares in a grid so that blocks of consecutive shaded squares satisfy constraints
* given for each row and column.
* Constraints typically indicate the sequence of shaded blocks (e.g. 3,1,2 means that there is a block of 3,
* then a gap of unspecified size, a block of length 1, another gap, and then a block of length 2)."
*
*
* @author Charles Prud'homme
* @since 08/08/11
*/
public class Nonogram extends AbstractProblem {
@Option(name = "-d", aliases = "--data", usage = "Nonogram data ID.", required = false)
Data data = Data.bar_code;
@Option(name = "-f", aliases = "--frame", usage = "open a frame.", required = false)
boolean frame = false;
BoolVar[][] vars;
@Override
public void createSolver() {
solver = new Solver("Nonogram");
}
@Override
public void buildModel() {
int nR = data.getR().length;
int nC = data.getC().length;
vars = new BoolVar[nR][nC];
for (int i = 0; i < nR; i++) {
for (int j = 0; j < nC; j++) {
vars[i][j] = VariableFactory.bool(String.format("B_%d_%d", i, j), solver);
}
}
for (int i = 0; i < nR; i++) {
dfa(vars[i], data.getR(i), solver);
}
for (int j = 0; j < nC; j++) {
dfa(ArrayUtils.getColumn(vars, j), data.getC(j), solver);
}
}
private void dfa(BoolVar[] cells, int[] rest, Solver solver) {
StringBuilder regexp = new StringBuilder("0*");
int m = rest.length;
for (int i = 0; i < m; i++) {
for (int j = 0; j < rest[i]; j++) {
regexp.append('1');
}
regexp.append('0');
regexp.append(i == m - 1 ? '*' : '+');
}
IAutomaton auto = new FiniteAutomaton(regexp.toString());
solver.post(IntConstraintFactory.regular(cells, auto));
}
@Override
public void configureSearch() {
solver.set(IntStrategyFactory.minDom_LB(ArrayUtils.flatten(vars)));
}
@Override
public void solve() {
solver.findSolution();
}
@Override
public void prettyOut() {
System.out.println(String.format("Nonogram -- %s", data.name()));
StringBuilder st = new StringBuilder();
for (int i = 0; i < vars.length; i++) {
st.append("\t");
for (int j = 0; j < vars[i].length; j++) {
st.append(vars[i][j].getValue() == 1 ? '#' : ' ');
}
st.append("\n");
}
System.out.println(st.toString());
if (frame) {
JFrame frame = new JFrame();
frame.setTitle("NonoGram");
frame.setBackground(Color.GRAY);
frame.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
Container contentPane = frame.getContentPane();
Drawing d = new Drawing();
contentPane.add(d);
Dimension dim = d.getSize();
frame.setSize(new Dimension((int) dim.getWidth(), (int) dim.getHeight() + 25));
frame.setVisible(true);
}
}
/**
* Class to draw the solution on a JPanel.
*/
private class Drawing extends JPanel {
int px = 10;
public Drawing() {
this.setSize(new Dimension(vars.length * px, vars[0].length * px));
this.setEnabled(true);
}
public void paintComponent(Graphics g) {
super.paintComponent(g);
for (int i = 0; i < vars.length; i++) {
for (int j = 0; j < vars[i].length; j++) {
//g.setColor(java.awt.Color.gray);
//g.fillRect(j * px, i * px, px, px);
if (vars[i][j].getValue() == 1)
g.setColor(java.awt.Color.black);
else
g.setColor(java.awt.Color.white);
g.fillRect(j * px, i * px, px, px);
}
}
}
}
public static void main(String[] args) {
new Nonogram().execute(args);
}
////////////////////////////////////////// DATA ////////////////////////////////////////////////////////////////////
static enum Data {
/**
* From http://www.comp.lancs.ac.uk/~ss/nonogram/
*/
rabbit(new int[][][]{
{
{2},
{4, 2},
{1, 1, 4},
{1, 1, 1, 1},
{1, 1, 1, 1},
{1, 1, 1, 1},
{1, 1, 1, 1},
{1, 1, 1, 1},
{1, 2, 2, 1},
{1, 3, 1},
{2, 1},
{1, 1, 1, 2},
{2, 1, 1, 1},
{1, 2},
{1, 2, 1},
},
{
{3},
{3},
{10},
{2},
{2},
{8, 2},
{2},
{1, 2, 1},
{2, 1},
{7},
{2},
{2},
{10},
{3},
{2},
}
}),
soccer(new int[][][]{
{
{3},
{5},
{3, 1},
{2, 1},
{3, 3, 4},
{2, 2, 7},
{6, 1, 1},
{4, 2, 2},
{1, 1},
{3, 1},
{6},
{2, 7},
{6, 3, 1},
{1, 2, 2, 1, 1},
{4, 1, 1, 3},
{4, 2, 2},
{3, 3, 1},
{3, 3},
{3},
{2, 1}
},
{
{2},
{1, 2},
{2, 3},
{2, 3},
{3, 1, 1},
{2, 1, 1},
{1, 1, 1, 2, 2},
{1, 1, 3, 1, 3},
{2, 6, 4},
{3, 3, 9, 1},
{5, 3, 2},
{3, 1, 2, 2},
{2, 1, 7},
{3, 3, 2},
{2, 4},
{2, 1, 2},
{2, 2, 1},
{2, 2},
{1},
{1}}
}),
bar_code(new int[][][]{
{{7, 1, 1, 7},
{1, 1, 1, 1, 1},
{1, 3, 1, 1, 1, 1, 3, 1},
{1, 3, 1, 1, 1, 3, 1},
{1, 3, 1, 1, 2, 1, 3, 1},
{1, 1, 3, 1, 1},
{7, 1, 1, 1, 7},
{1, 1,},
{3, 5, 1, 3, 1,},
{2, 1, 2, 7},
{1, 1, 4, 2, 4, 3},
{3, 1, 1, 4, 1},
{6, 1, 2, 2, 1},
{1, 1, 3, 3},
{7, 1, 1, 1, 3, 2},
{1, 1, 6, 2, 1,},
{1, 3, 1, 1, 1, 1, 1, 1,},
{1, 3, 1, 1, 1, 4, 1,},
{1, 3, 1, 1, 3, 2, 1},
{1, 1, 2, 2, 1, 1,},
{7, 5, 1, 2},
},
{{7, 4, 7},
{1, 1, 2, 2, 1, 1},
{1, 3, 1, 1, 3, 1, 3, 1},
{1, 3, 1, 1, 1, 1, 3, 1},
{1, 3, 1, 1, 2, 1, 3, 1},
{1, 1, 1, 1, 1, 1, 1},
{7, 1, 1, 1, 7},
{1, 2,},
{1, 3, 1, 5, 3},
{2, 1, 1, 1, 2},
{1, 1, 8, 3, 1, 1},
{2, 5, 1, 3},
{2, 2, 1, 1, 1, 7},
{1, 1, 1,},
{7, 3, 1, 1,},
{1, 1, 2, 6, 1},
{1, 3, 1, 2, 4, 3,},
{1, 3, 1, 1, 1, 2,},
{1, 3, 1, 3, 1,},
{1, 1, 2, 5, 2},
{7, 6, 1, 1},
}
}),
/**
* From http://www.icparc.ic.ac.uk/eclipse/examples/nono.ecl.txt, the
* hardest instance.
*/
p200(new int[][][]{
{
{1, 1, 2, 2,},
{5, 5, 7,},
{5, 2, 2, 9,},
{3, 2, 3, 9,},
{1, 1, 3, 2, 7,},
{3, 1, 5,},
{7, 1, 1, 1, 3,},
{1, 2, 1, 1, 2, 1,},
{4, 2, 4,},
{1, 2, 2, 2,},
{4, 6, 2,},
{1, 2, 2, 1,},
{3, 3, 2, 1,},
{4, 1, 15,},
{1, 1, 1, 3, 1, 1,},
{2, 1, 1, 2, 2, 3,},
{1, 4, 4, 1,},
{1, 4, 3, 2,},
{1, 1, 2, 2,},
{7, 2, 3, 1, 1,},
{2, 1, 1, 1, 5,},
{1, 2, 5,},
{1, 1, 1, 3,},
{4, 2, 1,},
{3,},
},
{
{2, 2, 3,},
{4, 1, 1, 1, 4,},
{4, 1, 2, 1, 1,},
{4, 1, 1, 1, 1, 1, 1,},
{2, 1, 1, 2, 3, 5,},
{1, 1, 1, 1, 2, 1,},
{3, 1, 5, 1, 2,},
{3, 2, 2, 1, 2, 2,},
{2, 1, 4, 1, 1, 1, 1,},
{2, 2, 1, 2, 1, 2,},
{1, 1, 1, 3, 2, 3,},
{1, 1, 2, 7, 3,},
{1, 2, 2, 1, 5,},
{3, 2, 2, 1, 2,},
{3, 2, 1, 2,},
{5, 1, 2,},
{2, 2, 1, 2,},
{4, 2, 1, 2,},
{6, 2, 3, 2,},
{7, 4, 3, 2,},
{7, 4, 4,},
{7, 1, 4,},
{6, 1, 4,},
{4, 2, 2,},
{2, 1},
}
});
final int[][][] data;
Data(int[][][] data) {
this.data = data;
}
int[][] getR() {
return data[0];
}
int[] getR(int i) {
return data[0][i];
}
int[][] getC() {
return data[1];
}
int[] getC(int j) {
return data[1][j];
}
}
private static class GetImage {
public int[][] data;
private int px = 6;
GetImage(String path) throws InterruptedException, IOException {
Image image = new ImageIcon(path).getImage();
this.handlepixels(image, 0, 0, image.getWidth(null), image.getHeight(null));
print();
}
public void handlesinglepixel(int x, int y, int pixel) {
int alpha = (pixel >> 24) & 0xff;
int red = (pixel >> 16) & 0xff;
int green = (pixel >> 8) & 0xff;
int blue = (pixel) & 0xff;
System.out.printf("%d %d %d %d\n", alpha, red, green, blue);
if (blue + red + green < 765) {
data[x][y] = 1;
} else {
data[x][y] = 0;
}
}
public void handlepixels(java.awt.Image img, int x, int y, int w, int h) {
PixelGrabber pg = new PixelGrabber(img, x, y, w, h, false);
try {
pg.grabPixels();
} catch (InterruptedException e) {
System.err.println("interrupted waiting for pixels!");
return;
}
if ((pg.getStatus() & ImageObserver.ABORT) != 0) {
System.err.println("image fetch aborted or errored");
return;
}
int[] pixels = (int[]) pg.getPixels();
data = new int[h][w];
for (int j = 0; j < h; j++) {
for (int i = 0; i < w; i++) {
handlesinglepixel(x + i, y + j, pixels[j * w + i]);
}
}
}
private void print() {
StringBuilder st = new StringBuilder();
st.append("{");
int[][] rdata = ArrayUtils.transpose(data);
oneDimension(rdata, st);
st.append("},\n{");
oneDimension(data, st);
st.append("}\n");
System.out.printf("%s\n", st.toString());
}
private void oneDimension(int[][] rdata, StringBuilder st) {
for (int i = 0; i < rdata.length; i += px) {
st.append('{');
int c = 0;
for (int j = 0; j < rdata[i].length; j += px) {
if (rdata[i][j] == 1) {
c++;
} else {
if (c > 0) {
st.append(c).append(',');
}
c = 0;
}
}
if (c > 0) {
st.append(c);
}
st.append("},\n");
}
}
public static void main(String[] args) throws InterruptedException, IOException {
new GetImage("/Users/cprudhom/Desktop/logoChoco2.png");
}
}
}