Last active
September 7, 2020 20:18
-
-
Save terror/c11fed3dd1ddfafa3182355064013a99 to your computer and use it in GitHub Desktop.
c++ template work in progress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <bits/stdc++.h> | |
using namespace std; | |
typedef long long ll; | |
typedef long double ld; | |
typedef unsigned int uint; | |
typedef unsigned long long ull; | |
typedef vector<int> vi; | |
typedef vector<ll> vl; | |
typedef vector<vi> vvi; | |
typedef vector<vl> vvl; | |
typedef pair<int, int> pii; | |
typedef map<int, int> mpii; | |
typedef set<int> seti; | |
const int mxN = 2e5, iinf = 1e9 + 10, inf = 1e18 + iinf + 10, mod = 1000000007; | |
const ld pi = 4.0 * atanl(1.0), prec = .000001; | |
#define f first | |
#define s second | |
#define pb push_back | |
#define mp make_pair | |
#define all(c) c.begin(), c.end() | |
#define rall(c) c.end(), c.begin() | |
#define FOR(i, a, b) for (int i = (a); i < (b); ++i) | |
int n, m, t, a[mxN]; | |
void fast() { ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0); } | |
int main() { | |
fast(); | |
cin >> n; | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment