Skip to content

Instantly share code, notes, and snippets.

View osjayaprakash's full-sized avatar
💭
I may be slow to respond.

Jayaprakash Sundararaj osjayaprakash

💭
I may be slow to respond.
View GitHub Profile
@osjayaprakash
osjayaprakash / SPOJ-AMZWORLD.cpp
Created December 22, 2012 18:48
SPOJ, Simple
#include <stdio.h>
int a[3]={1,1,1};
int p[3]={1,1,1};
int main()
{
int n;
scanf("%d", &n);
while(--n)
@osjayaprakash
osjayaprakash / SPOJ-ARRAYSUB.cpp
Created December 22, 2012 18:45
SPOJ, Segment Tree
#include <iostream>
#include <cstring>
using namespace std;
int val[2000010];
int mx[2000010];
int K,N;
void setmax(int &a, int b) {if(a<b) a=b;}
int build(int Node, int start, int end)
#include <iostream>
#include <cstring>
#include <stack>
#include <vector>
#include <algorithm>
using namespace std;
char str[]="ALLIZZWELL";
int v[105][105];
@osjayaprakash
osjayaprakash / SPOJ-QUEST5.cpp
Created December 22, 2012 18:37
SPOJ, Greedy
#include <iostream>
#include <algorithm>
using namespace std;
const int MAX=100025;
class _x{
public:
int s,e;
}v[MAX];
@osjayaprakash
osjayaprakash / SPOJ-WORKB.cpp
Created December 22, 2012 18:34
Greedy , SPOJ
#include <iostream>
#include <algorithm>
using namespace std;
const int MAX=100025;
int N,A,B;
int v[MAX];
int min2(int a, int b) {
#include <iostream>
#include <cstring>
#include <stack>
#include <vector>
#include <algorithm>
using namespace std;
char str[]="ALLIZZWELL";
int v[105][105];
@osjayaprakash
osjayaprakash / SPOJ-BUZZOFF.cpp
Created December 21, 2012 19:18
Matrix Exponentiation, Recurrence Eqn, Fibonacci
#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;
const long long int mod = 1000000007;
class _matrix{
public:
long long int x[2][2];
int n,m;
@osjayaprakash
osjayaprakash / SPOJ-RENT.cpp
Last active December 10, 2015 00:49
Scheduling, Dynamic Programming, SPOJ, Rent, Binary Search
#include <iostream>
#include <algorithm>
using namespace std;
class _x{
public: int s, e, p,m;
}VAL[10005];
int N;
@osjayaprakash
osjayaprakash / MLE_LAPLACE.java
Created August 25, 2012 07:39
Maximum Liklihood Estimator for Laplace Density Function
/*
* Author : JAYAPRAKASH S
* Maximum liklihood estimator for Laplace density function
* Mail : first_name [at] cse [dot] iitb [dot] ac [dot] com
* Please mail me, if any error is found.
*/
import java.util.ArrayList;
import java.util.Collections;
@osjayaprakash
osjayaprakash / PQueue.cpp
Last active October 7, 2015 03:37
Kthe Largest Element
#include <iostream>
#include <vector>
#include <stack>
#include <queue>
#include <algorithm>
#include <cstdio>
using namespace std;
struct compare {