1、html快速生成 !+ Tab 2、ctr+shift+x 打开插件商城 常用插件: Auto Close Tag Auto Rename Tag Beautify Bootstrap 4 & Font awesome snippets Bracket Pair Colorizer Class ...
分类:
其他好文 时间:
2019-09-28 10:34:14
阅读次数:
241
今天我再写了一次大根堆,一些问题我就记在heap4了,heap2是自己写的并且能ac的。 记得明天再写一遍,确实还有不少问题。 1,关于大根堆的问题。 一,algorithm头文件用在哪里 二,define RI LE DAD 这几个东西的深入理解。 、 三,struct 中 modify 和rep ...
分类:
其他好文 时间:
2019-09-28 01:06:07
阅读次数:
111
半边数据结构: 网格的顶点,边,面的数据储存在半边数据结构中,半边数据结构写成类似于C语言如下: 半边: struct HE_edge { HE_vert* vert; // vertex at the end of the half-edge HE_edge* pair; // oppositel ...
分类:
其他好文 时间:
2019-09-27 21:20:17
阅读次数:
112
Marcin is a coach in his university. There are nn students who want to attend a training camp. Marcin is a smart coach, so he wants to send only the s ...
分类:
其他好文 时间:
2019-09-27 21:03:26
阅读次数:
73
Question You are given two integer arrays nums1 and nums2 sorted in ascending order and an integer k. Define a pair (u,v) which consists of one elemen ...
分类:
其他好文 时间:
2019-09-25 00:57:21
阅读次数:
105
硬件:XENA Valkyrie 或 Vantage主机,测试板卡不限,本方法适用于其100M~400G所有速率端口 环境配置:Python 3 实现功能: 1.控制流量仪进行流量测试,预定配置的流量发送,报文统计,丢包率,延迟等信息的统计 2.单个Python脚本配合不同的JSON对象文件,来实现 ...
分类:
编程语言 时间:
2019-09-24 17:17:59
阅读次数:
132
"传送门" A Maximum Multiple 推一下式子暴力判断即可,范围不会太大。 Code cpp include define MP make_pair define fi first define se second define sz(x) (int)(x).size() // def ...
分类:
其他好文 时间:
2019-09-23 14:56:55
阅读次数:
78
题目思路: 很明显的dp题,就是以天数作为阶段,然后里面套一个完全背包,因为每天结束时会得到节点,所以在天数的循环最后还要加一个循环用来加上每天结束时得到的节点。 dp[u]表示现在有u个节点时最后能得到多少个节点,有几个地方要注意,首先是当前有的节点数要从2000开始循环,因为w[i]和k的范围是 ...
分类:
其他好文 时间:
2019-09-22 15:19:09
阅读次数:
87
pair是一种序偶结构<x,y> 如果我们希望使用pair但又不需要map对其排序,可以在vector中使用pair对 插入pair对使用make_pair<typename,typename>(x,y);或者make_pair(x,y); 定义使用pair的vector:vector<pair<i ...
分类:
其他好文 时间:
2019-09-22 10:51:20
阅读次数:
123
Farmer John knows that an intellectually satisfied cow is a happy cow who will give more milk. He has arranged a brainy activity for cows in which the ...
分类:
其他好文 时间:
2019-09-22 01:03:03
阅读次数:
109