Contact me with e-mail!

Codeforces:
Atcoder:

你是否在找

快读

1
2
3
4
5
6
int read(){
int f=1,x=0;char c=getchar();
while(!isdigit(c)){if(c=='-')f=-1;c=getchar();}
while(isdigit(c)){x=x*10+c-'0';c=getchar();}
return x*f;
}

模板(仓库地址,附算法库):

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
53
54
55
56
57
58
59
#include<bits/stdc++.h>
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 cp = cpp_dump;
CPP_DUMP_SET_OPTION_GLOBAL(max_line_width, 80);
CPP_DUMP_SET_OPTION_GLOBAL(log_label_func, cp::log_label::filename());
CPP_DUMP_SET_OPTION_GLOBAL(enable_asterisk, true);
#ifdef NO_COLOR
CPP_DUMP_SET_OPTION_GLOBAL(es_style, cp::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;
}

/*
1. 除非你明确需要元素去重,不要使用set,使用multiset。
2. 用multiset的时候,高智商人士不会直接erase
3. 用cout输出浮点数的时候,先切到fixed模式
4. 如果RE,记得检查vector的越界
5. dijkstra不加vis数组结果对但是复杂度错
*/

评论
网站资讯
文章数目 :
86
已运行时间 :
本站总字数 :
229k
本站访客数 :
本站总访问量 :
最后更新时间 :