Skip to content

Instantly share code, notes, and snippets.

View justcoding121's full-sized avatar
🏠
Working from home

Jehonathan Thomas justcoding121

🏠
Working from home
View GitHub Profile
import java.util.*;
import java.io.*;
public class Main {
final static String FNAME = "C-small-attempt0";
public Scanner in;
public PrintWriter out;
void open() throws IOException {
in = new Scanner( new File( FNAME + ".in" ) ) ;
out = new PrintWriter( new File( FNAME + ".out" ) );
/**
*
*
* Tested in NetBeans IDE 6.5.1 with JDK 1.6.0_17
* Generates the configuration space along with the path and saves in png format.
* Modify the variables sample_size, distance if needed
* Please replace FNAME_input and FNAME_output variables as per preffered location of input and output files.
*/
/**
*
*
* Tested in NetBeans IDE 6.5.1 with JDK 1.6.0_17
* Generates the configuration space image and saves in png format.
* Generates the configuration space matrix and saves in txt format
* Please replace FNAME_input and FNAME_output variables as per preffered location of input and output files.
*/
import java.io.*;
import java.util.*;
import java.util.*;
import java.io.*;
public class Main {
final static String FNAME = "A-large"; //input file name
public Scanner in;
public PrintWriter out;
void open() throws IOException {
in = new Scanner( new File( FNAME + ".in" ) ) ;
out = new PrintWriter( new File( FNAME + ".out" ) );