aboutsummaryrefslogtreecommitdiff
path: root/Template/template.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Template/template.cpp')
-rw-r--r--Template/template.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Template/template.cpp b/Template/template.cpp
index df2e7ee..7bb7acf 100644
--- a/Template/template.cpp
+++ b/Template/template.cpp
@@ -25,7 +25,8 @@ 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 ld PI = 4*atan((ld)1);
-constexpr ll MX = 1e5+5, ll INF = 1e9, LINF = 1e18, ll MOD = 1e9+7;
+constexpr ll INF = 1e9, LINF = 1e18, MOD = 1e9+7;
+constexpr int MX = 1e5+5;
int main() {
if (fopen("in", "r")) freopen("in", "r", stdin), freopen("out", "w", stdout);