assume cs:codesg,ds:datasg datasg segment db '1. file ' db '2. edit ' db '3. search ' db '4. view ' db '5. options ' db '6. help ' datasg ends codesg ...
分类:
其他好文 时间:
2020-02-02 12:20:23
阅读次数:
143
Description Building and maintaining roads among communities in the far North is an expensive business. With this in mind, the roads are build such th ...
分类:
其他好文 时间:
2020-02-01 21:13:17
阅读次数:
94
题目链接 题解: copy from: https://www.luogu.com.cn/blog/ryoku/ryoku-di-xin-nian-huan-le-sai-ti-xie segment tree, seg[i]为区间元素个数,每次从剩下的数中找第(b[i]+1)小的数,然后去掉次数( ...
分类:
其他好文 时间:
2020-02-01 10:22:33
阅读次数:
65
Rollback Segment Configuration & Tips (Doc ID 69464.1) To Bottom ROLLBACK SEGMENT CONFIGURATION & TIPS Good rollback segment configuration is crucial ...
分类:
其他好文 时间:
2020-02-01 00:40:02
阅读次数:
79
拓展KMP算法入门 博客推荐 "扩展KMP算法" , 图很形象,代码写的也很清晰,下面的模板就是出自该博客文章。 拓展KMP是求母串 长度为 和子串 长度为 ,求 的每一个后缀子串与 的前缀子串匹配的最长长度。 代码实现 ...
分类:
编程语言 时间:
2020-01-31 22:31:50
阅读次数:
75
http://www.360doc.com/content/18/0222/08/10346540_731371967.shtml ...
分类:
其他好文 时间:
2020-01-30 22:42:27
阅读次数:
72
osi七层协议 应用层 应用层 —— 应用层 —— 表示层 (规定应用程序的数据格式) 会话层 传输层 —— 传输层 —— 传输层 (建立端口到端口的通信(定义程序)) 网络层 —— 网络层 —— 网络层 (引入一套新的地址用来区分不同的广播域/子网,这套地址即网络地址) 数据链接层 —— 数据链接 ...
分类:
其他好文 时间:
2020-01-30 15:48:47
阅读次数:
90
" " " " Nightmare Nightmare is a high level browser automation library from "Segment" . The goal is to expose a few simple methods that mimic user act ...
分类:
Web程序 时间:
2020-01-29 23:35:58
阅读次数:
1385
"传送门" 题意: 给出$n$个区间,最终区间会合并为多个块。 现在要删除一个区间,问最终剩下的块最多是多少个。 思路: 将区间按左端点排序后,考虑维护区间的前后缀,然后枚举要删除的区间; 处理起来较麻烦,且维护的信息很多; 所以直接维护前缀信息,然后倒着来枚举删除区间,同时动态维护后缀; 统计答案 ...
分类:
其他好文 时间:
2020-01-29 23:33:37
阅读次数:
77