摘要: 写在前面 鉴于平常逛其他大神的blog的时候,经常看见他们blog上好看的背景。但自己又不知道怎么弄的,觉得很神奇。直接度娘试了前几篇发现没用。于是对着别人blog的网页源代码捣腾了一个下午,发现了摸索出了一些奥妙重重的东西,于是就挂到自己blog上给大家分享一下,如侵删。 第一步、将所需要的图片上 阅读全文
posted @ 2017-07-25 08:40 _Koreyoshi 阅读(418) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-07-25 08:02 _Koreyoshi 阅读(105) 评论(0) 推荐(0) 编辑
摘要: AARON ABBIE ABBOTT ABBRA ABBY ABE ABEL ABENI ABIA ABIBA ABIE ABIGAIL ABNER ABRAHAM ABRAM ABRIANNA ABRIENDA ABRIL ABSOLOM ABU ACACIA ACE ADA ADAH ADAIR 阅读全文
posted @ 2017-03-09 18:59 _Koreyoshi 阅读(3798) 评论(0) 推荐(0) 编辑
摘要: /*ID:marcoLANG:C++TASK:gift1*/#include <bits/stdc++.h> int main(){ freopen("gift1.in","r",stdin); freopen("gift1.out","w",stdout); char a[10][14],b[14 阅读全文
posted @ 2017-03-07 18:34 _Koreyoshi 阅读(88) 评论(0) 推荐(0) 编辑
摘要: /*ID:marcoLANG:C++TASK:friday*/#include<bits/stdc++.h>#define for(i,k,n) for (int i = k; i <= n; i++) using namespace std; const int MAXN = 110, DAYS[ 阅读全文
posted @ 2017-03-07 18:34 _Koreyoshi 阅读(86) 评论(0) 推荐(0) 编辑
摘要: /*ID:marcoLANG:C++TASK:beads*/#include<bits/stdc++.h>using namespace std; int main(){ freopen("beads.in","r",stdin); freopen("beads.out","w",stdout); 阅读全文
posted @ 2017-03-07 18:34 _Koreyoshi 阅读(84) 评论(0) 推荐(0) 编辑
摘要: /*ID:marcoLANG:C++TASK:ride*/#include<bits/stdc++.h>using namespace std;int a[1010],b[1010],n,n1,n2;string x,y; int main(){ freopen("ride.in","r",stdi 阅读全文
posted @ 2017-03-07 18:33 _Koreyoshi 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 在计算机科学中,并查集是一种树型的数据结构,其保持着用于处理一些不相交集合(Disjoint Sets)的合并及查询问题。有一个联合-查找算法(union-find algorithm)定义了两个操作用于此数据结构: Find:确定元素属于哪一个子集。它可以被用来确定两个元素是否属于同一子集。 Un 阅读全文
posted @ 2017-01-19 19:52 _Koreyoshi 阅读(382) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h>using namespace std;int a[101],b[101],n;int main(){ cin>>n; for (int i=1;i<=n;i++) cin>>a[i]; for (int i=1;i<=n;i++) for (int j 阅读全文
posted @ 2017-01-19 19:39 _Koreyoshi 阅读(235) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <cstdio>#include <cstring>#include <algorithm>#define N 100010#define INF 0xfffffusing namespace std;int n, m, q, x, y, cn 阅读全文
posted @ 2017-01-19 19:38 _Koreyoshi 阅读(96) 评论(0) 推荐(0) 编辑