AzurStar
算法竞赛模板

算法竞赛模板

收集算法竞赛常用模板、算法,不断更新。

算法模板

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
#include <algorithm>
#include <cmath>
#include <cstring>
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <vector>
#include <bitset>
#include <numeric>
#define endl '\n'
using namespace std;
using ll = long long;
using ull = unsigned long long;
using ld = long double;
using pll = pair<ll, ll>;

const ld pi=acos(-1);
const ld eps=1e-4;
const ll mod=1e9+7;


// 快速幂
ll qpow(ll a, ll b,ll m=mod) {
ll res=1;
while (b) {
if (b&1) res=res*a%m;
a=a*a%m;
b>>=1;
}
return res;
}

void solve() {

}

int main() {
ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
// ll t;cin>>t;
// while(t--) solve();
solve();
return 0;
}
本文作者:AzurStar
本文链接:https://blog.elaina.pro/ACM/算法竞赛模板/
版权声明:本文采用 CC BY-NC-SA 3.0 CN 协议进行许可