From f0586f1f7e3036060f0e424c082288dc9dd39c62 Mon Sep 17 00:00:00 2001 From: Anthony Wang Date: Sun, 20 Dec 2020 14:32:34 -0600 Subject: Delete usaco.cpp --- Template/usaco.cpp | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 Template/usaco.cpp diff --git a/Template/usaco.cpp b/Template/usaco.cpp deleted file mode 100644 index ba47815..0000000 --- a/Template/usaco.cpp +++ /dev/null @@ -1,38 +0,0 @@ -#include -#include -#include -#include -#define io(name) if (fopen((str(name)+".in").c_str(), "r")) freopen((str(name)+".in").c_str(), "r", stdin), freopen((str(name)+".out").c_str(), "w", stdout) -#define f first -#define s second -#define mp make_pair -#define pb push_back -#define eb emplace_back -#define lb lower_bound -#define ub upper_bound -#define rsz resize -#define sz(x) (int)x.size() -#define all(x) begin(x), end(x) -#define tr(a, x) for (auto & a : x) -#define mem(a, b) memset(a, (b), sizeof(a)) -#define pc __builtin_popcount -#define clz __builtin_clz -#define ctz __builtin_ctz -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; -using ii = pair; using pl = pair; using pd = pair; -using vi = vector; using vl = vector; using vd = vector; -using vii = vector; using vpl = vector; using vpd = vector; -template using ordered_set = tree, rb_tree_tag, tree_order_statistics_node_update>; -template using ordered_multiset = tree, rb_tree_tag, tree_order_statistics_node_update>; // Use with caution -constexpr ld PI = 4*atan((ld)1); -constexpr ll INF = 1e9, LINF = 1e18, MOD = 1e9+7; -constexpr ll MX = 1e5+5; - - -int main() { - io("name"); if (fopen("in", "r")) freopen("in", "r", stdin), freopen("out", "w", stdout); - ios_base::sync_with_stdio(0), cin.tie(0); - - -} -- cgit v1.2.3-70-g09d2