Diff
Not logged in

Differences From Artifact [6e30a998ce576012]:

To Artifact [f84e3f16d60fb246]:


10 10 #include <iterator> 11 11 #include <functional> 12 12 #include <complex> 13 13 #include <queue> 14 14 #include <stack> 15 15 #include <cmath> 16 16 #include <cassert> 17 +#include <tuple> 17 18 using namespace std; 18 19 typedef long long LL; 19 -typedef long double LD; 20 -typedef complex<LD> CMP; 20 +typedef complex<double> CMP; 21 21 22 22 class $CLASSNAME$ { public: 23 23 $RC$ $METHODNAME$($METHODPARMS$) 24 24 { 25 25 } 26 26 }; 27 27 28 28 $TESTCODE$