-
This repository contains all the important data structures and algorithms that I use in Competitive Programming.
-
I have
cis_pie
as my username on all coding platforms. You can view me on Codechef or Codeforces. -
Feel free to use these codes and let me know if you find any bug.
Algorithms
Miscellaneous
Fast IO for JAVA : Template.
-
Taken this template from legendary coder uwi
-
Java is a little bit slower than C++/C and the main factor behind this is slow console input/output.
-
Java's Scanner, as well as BufferedReader class, is too slow. So the best option is creating your own input-output classes.
-
I had never faced Time Limit Exceed Error (i.e Code takes too much time because of an inefficient/wrong algorithm ) after I started using this template.
-
To use this template you have to write all your code in solve() method.
-
From main() method we are calling solve() method which is supposed to solve the asked problem.
-
INPUT METHODS
-
int x=ni()
-to input single number Short form of nextInt() -
long x=nl()
-to input long number nextLong() -
double x=nd()
- to input double values nextDouble() -
String x=ns()
- to input string nextString() -
char x=nc()
- to input character nextChar() -
int[] arr=na(int n)
-to input array of size n i.e parameter is integer with value n. It will allocate a new array and return its reference. nextArray() -
char [][] matrix =nm(int n,int m)
this is method is used tor inputing character matrix nextMatrix()
-
-
OUTPUT METHODS
-
pn(Object o)
- method is used to print anthing on console the parameter is Object is you can pass anthing. It is similar asSystem.out.println()
. -
p(Object o)
- Similar asSystem.out.print()
-
-
UTILITY FUNCTIONS
-
int x=max( int[] arr)
-it will find max element from array. -
int y=min(int [] arr)
it will find min element from array. -
int g=gcd(x,y)
for finding gcd. -
Implemented pair class because there is no inbuilt pair class. You can use the pair in Hashed Collections as well as Tree Collections because
hashCode()
andcompareTo()
methods are implemented in this pair class.
-