自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

原创 快读!!!

inline int read(){ int f = 1, x = 0;char ch = getchar(); while (ch > '9' || ch < '0'){if (ch == '-')f = -f;ch = getchar();} while (ch >= '0' && ch <= '9'){x = x * 10 + ch - '0';ch = getchar();} return x * f; }

2021-10-20 17:05:05 54

原创 prim~(够5个了)

#include<iostream> #include<iostream> #include<cstdio> #include<cstring> #include<cmath> #include<queue> #include<algorithm> #define MAXN 1000010 #define INF 10000010 using namespace std; inline int read(){

2021-10-20 16:59:33 46

原创 cmp大道至简?嗯!

int cmp(const struct student &c,const struct student &b) { return c.score>b.score; } const可以省

2021-10-20 16:54:56 43

原创 二分快速幂

#include <bits/stdc++.h> using namespace std; int main() { long long a,b,c; cin>>a>>b>>c; cout<<a<<"^"<<b<<" mod "<<c<<"="; if(b==0) { cout<<0; return 0;} long long ans=1; a=a%c; wh

2021-07-17 08:24:16 88

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除