Runtime snippet added

This commit is contained in:
2024-03-15 22:28:49 +05:30
parent 7bd4fb7f66
commit 661d50d5da

View File

@@ -40,6 +40,8 @@ using namespace std;
#define loop(i,s,e,weight) for(auto i = s ; (weight>=0? i <= e : i >= e ) ; i+=weight ) #define loop(i,s,e,weight) for(auto i = s ; (weight>=0? i <= e : i >= e ) ; i+=weight )
#define read(n) ll n; cin>>n #define read(n) ll n; cin>>n
#define endl '\n' #define endl '\n'
#define ALGO_START clock_t z = clock()
#define ALGO_END cout << "RUN TIME : " << fixed << setprecision(6) << ((double)(clock() - z))/CLOCKS_PER_SEC
//endl -> cout << '\n' << flush;//hence,slower. //endl -> cout << '\n' << flush;//hence,slower.
//for interactive problem. //for interactive problem.