Cleaned up template

This commit is contained in:
Anthony Wang 2020-08-15 16:50:42 -05:00
parent a08b943e2e
commit 6ecb2c72d6

View file

@ -2,21 +2,17 @@
#include <ext/pb_ds/tree_policy.hpp> #include <ext/pb_ds/tree_policy.hpp>
#include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/assoc_container.hpp>
#include <ext/rope> #include <ext/rope>
#define F(i, a, b, in) for (int i = (a); i < (b); i += in) #define f first
#define R(i, a, b) for (int i = (a); i < (b); i++) #define s second
#define RF(i, a, b, in) for (int i = (a) - 1; i >= (b); i -= in)
#define RR(i, a, b) for (int i = (a) - 1; i >= (b); i--)
#define tr(a, x) for (auto& a : x)
#define mp make_pair #define mp make_pair
#define pb push_back #define pb push_back
#define eb emplace_back #define eb emplace_back
#define f first
#define s second
#define lb lower_bound #define lb lower_bound
#define ub upper_bound #define ub upper_bound
#define rsz resize
#define sz(x) (int)x.size() #define sz(x) (int)x.size()
#define all(x) begin(x), end(x) #define all(x) begin(x), end(x)
#define rsz resize #define tr(a, x) for (auto& a : x)
#define mem(a, b) memset(a, (b), sizeof(a)) #define mem(a, b) memset(a, (b), sizeof(a))
using namespace std; using namespace __gnu_pbds; using namespace __gnu_cxx; using namespace std; using namespace __gnu_pbds; using namespace __gnu_cxx;
using str = string; using ll = long long; using ld = long double; using cd = complex<ld>; using str = string; using ll = long long; using ld = long double; using cd = complex<ld>;