思路: 求交集最大老套路,排序之后用堆维护即可。 c++ include using namespace std; const int mod = 1e9+7; const int maxn = 1000010; inline int read() { int q=0,f=1;char ch = g ...
分类:
其他好文 时间:
2018-09-10 13:40:17
阅读次数:
348
time 模块 在平常的代码中,我们常常需要与时间打交道。在Python中,常用的与时间处理有关的模块就包括:time,datetime,下面来介绍time模块。 在开始之前,首先要说明几点: 一、在Python中,通常有这几种方式来表示时间: 二、几个定义 UTC(Coordinated Univ ...
分类:
编程语言 时间:
2018-09-09 22:41:14
阅读次数:
249
题目链接:https://nanti.jisuanke.com/t/31452 A prime number (or a prime) is a natural number greater than $1$ that cannot be formed by multiplying two smal ...
分类:
其他好文 时间:
2018-09-09 19:53:01
阅读次数:
192
以前一直以为这两个是很高级的东西,这段时间用到了才开始学,发现实际上非常简单 下面我们以单调队列为例进行讲解,单调栈自行类比 顾名思义 单调队列这个名字就指明了它的性质—— 单调性 我们来看一道例题—— "滑动窗口" 题面在此不再赘述,大意就是有一个长度为$n$的数列,一个长度为$k$的窗口,输出窗 ...
分类:
其他好文 时间:
2018-09-09 18:16:43
阅读次数:
212
组成:HTML代码+逻辑控制代码 逻辑控制代码的组成 1、变量 {{ var_name }} 深度变量的查找:万能的句点号 变量的过滤器 {{obj|filter:param}} (1)add 1 2 3 (2)addslashes 1 2 3 (3)capfirst 1 2 3 (4)cut 1 ...
分类:
其他好文 时间:
2018-09-09 12:09:22
阅读次数:
203
描述 Given an N-digit number, you should remove K digits and make the new integer as large as possible. Given an N-digit number, you should remove K dig ...
分类:
其他好文 时间:
2018-09-08 11:41:36
阅读次数:
139
2. Add Two Numbers You are given two non empty linked lists representing two non negative integers. The digits are stored in reverse order and each of ...
分类:
其他好文 时间:
2018-09-07 15:56:30
阅读次数:
152
66. Plus One Given a non empty array of digits representing a non negative integer, plus one to the integer. The digits are stored such that the most ...
分类:
其他好文 时间:
2018-09-06 23:52:54
阅读次数:
242
People on Mars count their numbers with base 13: Zero on Earth is called "tret" on Mars. The numbers 1 to 12 on Earch is called "jan, feb, mar, apr, m ...
分类:
其他好文 时间:
2018-09-06 02:51:25
阅读次数:
136
// // OpenWebViewController.m // Treasure // // Created by 蓝蓝色信子 on 16/7/29. // Copyright © 2016年 GY. All rights reserved. // #import "ZTOpenWebViewCo... ...
分类:
Web程序 时间:
2018-09-05 19:48:02
阅读次数:
336