Skip to content

Instantly share code, notes, and snippets.

View karaketir16's full-sized avatar
๐Ÿ˜‘

Osman Karaketir karaketir16

๐Ÿ˜‘
  • ASELSAN
  • Ankara
  • 17:52 (UTC +03:00)
View GitHub Profile
#include <bits/stdc++.h>
#define pb push_back
#define fi first
#define sc second
#define inf 1000000000000000LL
#define MP make_pair
#define min3(a,b,c) min(a,min(b,c))
#define max3(a,b,c) max(a,max(b,c))
#define dbg(x) cerr<<#x<<":"<<x<<endl
#define N 200005
#include <bits/stdc++.h>
#define pb push_back
#define fi first
#define sc second
#define inf 1000000000000000LL
#define MP make_pair
#define min3(a,b,c) min(a,min(b,c))
#define max3(a,b,c) max(a,max(b,c))
#define dbg(x) cerr<<#x<<":"<<x<<endl
#define N 100005
@karaketir16
karaketir16 / comp_macros.h
Created October 21, 2018 14:08 — forked from abinashmeher999/comp_macros.h
Some of the most used macros in competitive programming
#include <cmath>
#include <climits>
#include <queue>
#include <vector>
#include <map>
#include <cstdlib>
#include <fstream>
#include <iomanip>
#include <iostream>
#include <sstream> // istringstream buffer(myString);
#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
typedef long long int lint;
int n;
vector<int> arr;
lint f( lint b)