aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Wang2020-08-11 14:41:01 -0500
committerGitHub2020-08-11 14:41:01 -0500
commit3b88ee3957257cd307aa6436ccc71c7509e2d3b4 (patch)
treeeecee1e351484550b8528eb69a3bc9b6a2df5e15
parente03adb2f8cfaa7b04883123de9ea6fb170dbad65 (diff)
Improve readibility
-rw-r--r--Template/template.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Template/template.cpp b/Template/template.cpp
index 82dab59..e70dc4f 100644
--- a/Template/template.cpp
+++ b/Template/template.cpp
@@ -21,8 +21,8 @@
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 ii = pair<int, int>; using pl = pair<ll, ll>; using pd = pair<ld, ld>;
-using vi = vector<int>; using vl = vector<ll>; using vd = vector<ld>;
-using vii = vector<ii>; using vpl = vector<pl>; using vpd = vector<pd>;
+using vi = vector<int>; using vl = vector<ll>; using vd = vector<ld>;
+using vii = vector<ii>; using vpl = vector<pl>; using vpd = vector<pd>;
template<typename T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
template<typename T> using ordered_multiset = tree<T, null_type, less_equal<T>, rb_tree_tag, tree_order_statistics_node_update>; // Use with caution
constexpr int INF = 1e9; constexpr ll LINF = 1e18; constexpr ll MOD = 1e9+7; constexpr ld PI = 4*atan((ld)1);