This repository contains my setup for competitive programming competitions
This repository contains my setup for competitive programming competitions.
Below is a brief description of the files:
It contains my template used for writing programs. Some utility functions used in almost all programs, included fast I/O routines are available in this.
It contains the brute force solution or the correct solution against which I want to debug my code.
It is the file where I write my own code for the problem.
It contains the random input file generator the problem.
It compares the output of 2 files letter by letter (namely res.txt and out.txt) and outputs whether both the files are exactly same or not.
It contains the output checking process when the files (namely res.txt and out.txt) contains double or floating-point numbers and the answers is considered correct within some desired error.
It is a bash script to automate the process of debugging 2 codes against each other when exact test files should match.
It is a bash script to automate the process of 2 debugging 2 codes against each other when the test files should match within some error limit.
It contains a small code snippet used to increase the stack limit on the Judge.
It contains a small code snippet to print the time taken by the program to execute the given test case data.
It contains the code template for java solutions.
It contains the code template for python solutions.