首页 > 技术文章 > 缺省源&一些常用的码头

shight 2021-11-09 21:54 原文

#include <bits/stdc++.h>
#define N 1000010
#define M 2000010
#define mkp make_pair
#define pb push_back
#define fi first
#define se second
#define int long long
#define int_edge int to[M],val[M],nxt[M],head[N],cnt=0;
using namespace std;

//void add_edge(int x,int y ){to[++cnt]=y;nxt[cnt]=head[x];head[x]=cnt;}
int read(){
	int fu=1,ret=0;char ch;
	for(;!isdigit(ch);ch=getchar())if(ch=='-')fu*=-1;
	for(;isdigit(ch);ch=getchar())ret=(ret<<1)+(ret<<3)+ch-'0';
	return ret*fu;
}
int ksm(int x,int p){
	int tmp=1;
	while(p){
		if(p&1)tmp=(tmp*x)%MOD;
		x=(x*x)%MOD;
		p/=2;
	}
	return tmp;
}
signed main()
{

	return 0;
}


好啦接下来是一些不正经内容(日常放在代码前用于中二的好词好句)

1.We're always calmly waiting for the dead love in despair. 我们总是在绝望中静静等待逝去的爱情

2.ωнєη уσυ gαzє ιηтσ αвуѕѕ,тнє αвуѕѕ αℓѕσ gαzєѕ ιηтσ уσυ. 当你凝视深渊时,深渊也在凝视你

3.Talking to the Moon,Try'na get to You,In hopes your on the other side talking to me too,Oh Am I a fool, Who sits alone,talking to the moon.(这个的中文不重要,毕竟是歌词)

4.We laughed and kept saying see you soon, but inside we both knew we'd never see each other again.我们笑着说再见,却深知再见遥遥无期

5.I don't know the passion until I met you,I don't know the sorrow until I left you,But now I do know the love when I cherish you.遇见你之前我不知道热情,离开你之前我不知道悲伤,但是我现在知道,要爱你在我珍惜你的时候。

6.without you,however beautiful the city is,it is just null.没有了你,再怎么美丽的城市,在我看来都只是一座空城。

7.I still keep in place, not waiting for you, just waiting to give up.我还守在原地,不为等你,只是等自己放弃。

推荐阅读