update template and debug
This commit is contained in:
parent
57e36ea841
commit
47fba30140
10
CPTemp.cpp
10
CPTemp.cpp
@ -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();
|
||||
}
|
7
debug.h
7
debug.h
@ -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__)
|
Loading…
Reference in New Issue
Block a user