简易的算法板子
Posted 辉小歌
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简易的算法板子相关的知识,希望对你有一定的参考价值。
#include<bits/stdc++.h>
using namespace std;
/*
#pragma GCC optimize(2)
exp(n) e的n次方
const double e=2.7182818284590452353602874713527;
priority_queue<int,vector<int>,greater<int>>q;
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
*/
const int N=1e5+10;
const double pi=acos(-1);
const double e=2.7182818284590452353602874713527;
typedef pair<int,int> PII;
typedef long long int LL;
LL gcd(LL a,LL b)return b?gcd(b,a%b):a;
LL qsm(LL a,LL b,LL p)
LL sum=1;
while(b)
if(b&1) sum=sum*a%p;
a=a*a%p; b=b>>1;
return sum%p;
int n,m,t;
int a[N];
int main(void)
return 0;
超强干货来袭
云风专访:近40年码龄,通宵达旦的技术人生
以上是关于简易的算法板子的主要内容,如果未能解决你的问题,请参考以下文章