Update usaco.cpp

This commit is contained in:
Anthony Wang 2019-09-23 12:24:56 -05:00 committed by GitHub
parent 483cef11c1
commit 4cd29604f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,9 +29,9 @@
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int, int> ii, typedef pair<ll, ll> pl, typedef pair<ld, ld> pd;
typedef vector<int> vi, typedef vector<ll> vl, typedef vector<ld> vd;
typedef vector<ii> vii, typedef vector<pl> vpl, typedef vector<pd> vpd;
typedef pair<int, int> ii; typedef pair<ll, ll> pl; typedef pair<ld, ld> pd;
typedef vector<int> vi; typedef vector<ll> vl; typedef vector<ld> vd;
typedef vector<ii> vii; typedef vector<pl> vpl; typedef vector<pd> vpd;
constexpr auto INF = (int)1e9;
constexpr auto LINF = (ll)1e18;