# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1127149 | abushbandit_ | Split (info1cup19_split) | C++20 | 0 ms | 0 KiB |
//~ how can i make it 10% more fun?
//~ what it would take for me to enjoy this?
#include <bits/stdc++.h>
using namespace std;
#ifndef ONLINE_JUDGE
#include "debug.h"
#else
#define debug(...)
#define debugArr(...)
#endif
#define int long long
#define pb push_back
#define all(x) x.begin(), x.end()
#define ff first
#define ss second
template <class F, class _S>
bool chmin(F &u, const _S &v){
bool flag = false;
if ( u > v ){
u = v; flag |= true;
}
return flag;
}
template <class F, class _S>