-
Notifications
You must be signed in to change notification settings - Fork 0
/
DefaultCode.cpp
38 lines (32 loc) · 1016 Bytes
/
DefaultCode.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include<random>
#include<iostream>
#define mmst0(x) memset(x,0,sizeof(x))
#define mmst3f(x) memset(x,0x3f,sizeof(x))
#define all(x) (x).begin(),(x).end()
#define pb(...) emplace_back(__VA_ARGS__)
#define sz(x) ((int)(x.size())) // since C++20 std::ssize() is better
#define mkp(...) make_pair(__VA_ARGS__)
#define lowbit(x) ((-(x))&(x))
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int,int> PII;
typedef pair<char,int> PCI;
typedef pair<int,string> PIS;
const double eps=1e-6;
const int INF=0x3f3f3f3f;
const ll LLINF=0x3f3f3f3f3f3f3f3f;
const int MAXN=(int)1e5+3,MOD=(int)1e9+7;
inline int rnd(int x) {mt19937 mrand(random_device{}()); return mrand()%x;};
inline void work(int CASE,bool FINAL_CASE) {
return;
}
int main() {
// ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr);
signed T=1;// scanf("%d",&T);// cin>>T;
for(signed CASE=1; CASE<=T; CASE++) {
work(CASE,CASE==T);
if(CASE!=T) { }
}
return 0;
}