update template and debug

This commit is contained in:
ShazidMahsrafi 2024-04-23 23:48:41 +06:00
parent 57e36ea841
commit 47fba30140
2 changed files with 8 additions and 9 deletions

View File

@ -1,6 +1,10 @@
#include<bits/stdc++.h>
#include "debug.h"
using namespace std;
#ifdef ONLINE_JUDGE
#define dbg(...)
#else
#include "debug.h"
#endif
#define ll long long
#define endl '\n'
#define all(x) x.begin(), x.end()
@ -12,13 +16,13 @@ ll pow(ll x,ll y,ll m=1e9+7){ll ans=1;x%=m;while(y){if(y&1)ans=(ans*x)%m;x=(x*x)
void solve()
{
}
signed main()
{
FAST;
int TC = 1;
//cin >> TC;
// cin >> TC;
while (TC--) solve();
}

View File

@ -103,10 +103,5 @@ namespace __DEBUG_UTIL__
}
}
#ifdef ONLINE_JUDGE
#define dbg(...)
#define dbgArr(...)
#else
#define dbg(...) std::cerr << __LINE__ << ": [", __DEBUG_UTIL__::printer(#__VA_ARGS__, __VA_ARGS__)
#define dbgArr(...) std::cerr << __LINE__ << ": [", __DEBUG_UTIL__::printerArr(#__VA_ARGS__, __VA_ARGS__)
#endif
#define dbgArr(...) std::cerr << __LINE__ << ": [", __DEBUG_UTIL__::printerArr(#__VA_ARGS__, __VA_ARGS__)