qwqqwqwq
qwqqwqwq
全部文章
分类
数学(1)
未归档(211)
归档
标签
去牛客网
登录
/
注册
qwqqwqwq的博客
全部文章
(共212篇)
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+21y 22a+...
提高组
找规律
数论
2019-08-21
0
568
P2572 [SCOI2010]序列操作
建树的函数不要忘了return!!! #include<iostream> #include<cstdio> #define N 100005 using namespace std; int n,m; struct seg { int l,r; int...
线段树
2019-08-19
0
355
区间连续长度的线段树——洛谷P2894 [USACO08FEB]酒店Hotel
https://www.luogu.org/problem/P2894 #include<cstdio> #include<iostream> using namespace std; struct ben { int lmax,rmax,len,sum,lz; }...
线段树
2019-08-18
0
387
P3372 【模板】线段树 1
#include<cstdio> using namespace std; struct ben { long long l,r,val,mark; }tr[400005]; long long a[100005]; void bt(long long x,long long l...
线段树
2019-08-17
0
406
如何检查电脑的开机时间
打开我的电脑 右键 管理 事件查看器 -Windows日志 系统 然后点击右边筛选当前日志 在所有事件ID那里换成6005,确认
开机时间
2019-08-16
0
412
数论小白都能看懂的平面凸包详解
0.前言: 本文将已详细的配图,带您轻松入门平面凸包。 1.引入: 假设一个操场上有一些小朋友,下面是航拍视角: 现在他们要围一个球场做游戏。 因为老师比较懒,所以就只能麻烦一些小朋友了(他们自己撑着绳子防止球滚出去) 而小朋友又不动脑子。所以就只能麻烦你来出主意了。 显然,最简单的...
日报
凸包
2019-08-15
0
526
tarjan模板完整版
https://www.luogu.org/problem/P2863 #include<cstdio> #include<vector> using namespace std; int dfn[10005],low[10005],stack[10005],scc[100...
模板
tarjan
2019-08-11
0
379
斜率dp的模板总结
#include<cstdio> #include<algorithm> using namespace std; long long sumt[40005],sum[40005],f[40005],q[40005]; double X(long long x) { ...
2019-08-11
0
353
洛谷模板题单
来自:https://www.luogu.org/blog/da32s1da/mu-ban 模板题: P1082 同余方程 P1177 快排 P1439 最长公共子序列 P1452 凸包直径(旋转卡壳) P1531 区间求最值 P1595 伯努利错装信封问题 P17...
题单
模板
2019-08-10
0
564
任务安排
https://www.luogu.org/problem/P2365 分析: f[i]表示前i个分组后的最小费用 f[i]=min(f[j]+t[i](c[i]-c[j])+s(c[n]-c[j])); 前j个 i~j的答案 因为分了一组,所以在此之后的组肯定至少有一个等待的s c是费用...
斜率优化
dp
2019-08-09
0
488
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页