ShineEternal
ShineEternal
全部文章
未归档
AT刷题题解(1)
BZOJ刷题题解(3)
C++(1)
c++小游戏汇总栏(9)
codeforces刷题题解(3)
ShineEternal的洛谷日报(3)
SOJ刷题题解(4)
二分(1)
二分图(3)
初赛(1)
快读(1)
欢迎(1)
洛谷刷题(65)
计蒜客(1)
归档
标签
去牛客网
登录
/
注册
ShineEternal的博客
全部文章
/ 未归档
(共314篇)
emmm
emmm
2019-08-29
0
295
biiset用法
C++ bitset——高端压位卡常题必备STL 以下内容翻译自cplusplus.com,极大地锻炼了我的英语能力。 bitset存储二进制数位。 bitset就像一个bool类型的数组一样,但是有空间优化——bitset中的一个元素一般只占1 bit,相当于一个char元素所占空间的八分...
2019-08-27
0
453
洛谷P1019 单词接龙题解(超详细注释)
https://www.luogu.org/problem/P1019 #include<cstdio> #include<cstring> #include<iostream> using namespace std; char s[50][15]; int...
2019-08-25
0
411
洛谷P1021 邮票面值设计
https://www.luogu.org/problem/P1021 #include<cstdio> #include<cstring> #include<iostream> using namespace std; int res; int f[1000...
2019-08-23
0
377
洛谷P1016 旅行家的预算 题解
主要就是注意一下各个变量的类型别弄混了 https://www.luogu.org/problem/P1016 #include<cstdio> using namespace std; double d[10],a[10]; int main() { double d1,c,d...
2019-08-22
0
398
洛谷公开赛
转载自ouuan!!!!!!!!!!!!!!!!!! title: 洛谷公开赛题面参考 date: 2019-08-14 11:38:49 categories: 出题 tags: 出题规范 top: --- 大约会按 CF(以及我个人?)的标准重写一下题面。如果想做一名优...
2019-08-22
0
388
P1011 车站
https://www.luogu.org/problem/P1011 车上人数 上车人数 a a a y 2a a+y 2a+y a+2y 3a+2y 2a+3y 4*** 3a+5y 6a+7y 5a+8y 9a+12y 8a+13y 14a+20y 13a+...
2019-08-21
0
420
P2572 [SCOI2010]序列操作
建树的函数不要忘了return!!! #include<iostream> #include<cstdio> #define N 100005 using namespace std; int n,m; struct seg { int l,r; int l0,l1;/...
2019-08-19
0
401
区间连续长度的线段树——洛谷P2894 [USACO08FEB]酒店Hotel
https://www.luogu.org/problem/P2894 #include<cstdio> #include<iostream> using namespace std; struct ben { int lmax,rmax,len,sum,lz; }tr[...
2019-08-18
0
401
P3372 【模板】线段树 1
#include<cstdio> #define lch (x*2) #define rch (x*2+1) using namespace std; struct ben { long long left,right,mark,val; }tr[400005]; long lo...
2019-08-17
0
395
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页