diff --git a/Library/Miscellanious/template.cpp b/Library/Miscellanious/template.cpp index bd9b0bc..9bdf685 100644 --- a/Library/Miscellanious/template.cpp +++ b/Library/Miscellanious/template.cpp @@ -21,14 +21,14 @@ using namespace std; #define sortall(x) sort(all(x)) #define tr(it, a) for(auto it = a.begin(); it != a.end(); it++) #define PI 3.1415926535897932384626 -typedef pair pii; -typedef pair pl; -typedef vector vi; -typedef vector vl; -typedef vector vpii; -typedef vector vpl; -typedef vector vvi; -typedef vector vvl; +typedef pair pii; +typedef pair pl; +typedef vector vi; +typedef vector vl; +typedef vector vpii; +typedef vector vpl; +typedef vector vvi; +typedef vector vvl; mt19937_64 rang(chrono::high_resolution_clock::now().time_since_epoch().count()); int rng(int lim) { uniform_int_distribution uid(0,lim-1); @@ -77,7 +77,7 @@ void ipgraph(int n, int m){ int i, u, v; while(m--){ cin>>u>>v; - u--, v--; + u--, v--; g[u].pb(v); g[v].pb(u); }