-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.cpp
More file actions
52 lines (44 loc) · 1.35 KB
/
Copy pathmain.cpp
File metadata and controls
52 lines (44 loc) · 1.35 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include<bits/stdc++.h>
#include<cassert>
using namespace std;
using ll=long long;using ull=unsigned long long;using pii=pair<int,int>;
#define all(x) (x).begin(),(x).end()
#define rall(x) (x).rbegin(),(x).rend()
#define unq(x) (x).erase(unique(all((x))),(x).end())
#define YES cout << "YES\n"
#define NO cout << "NO\n"
#define Yes cout << "Yes\n"
#define No cout << "No\n"
#define mem0(x) memset((x),0,sizeof(x))
template<typename T>
ostream& operator<<(ostream& os, const vector<T>& data){
for(int i=0;i<data.size();i++)os<<data[i]<<' ';
return os;
}
#ifndef ONLINE_JUDGE
#include "template/cpp-dump/cpp-dump.hpp"
#define debug(...) cpp_dump(__VA_ARGS__)
namespace cppd = cpp_dump;
CPP_DUMP_SET_OPTION_GLOBAL(max_line_width, 80);
CPP_DUMP_SET_OPTION_GLOBAL(log_label_func, cppd::log_label::filename());
CPP_DUMP_SET_OPTION_GLOBAL(enable_asterisk, true);
#ifdef NO_COLOR
CPP_DUMP_SET_OPTION_GLOBAL(es_style, cppd::types::es_style_t::no_es);
#endif // NO_COLOR
#else
#define debug(...)
#define CPP_DUMP_SET_OPTION(...)
#define CPP_DUMP_DEFINE_EXPORT_OBJECT(...)
#define CPP_DUMP_DEFINE_EXPORT_OBJECT_GENERIC(...)
#define CPP_DUMP_DEFINE_EXPORT_ENUM(...)
#define CPP_DUMP_DEFINE_EXPORT_ENUM_GENERIC(...)
#endif // ONLINE_JUDGE
void solve(){
}
int main(){
ios::sync_with_stdio(0);cin.tie(0);
cout<<fixed;
int T; cin>>T;
while(T--)solve();
return 0;
}