首页 > 2017年01月29日 > 全部分享
UVa 10673 Play with Floor and Ceil
方法 : 数论? 用k,x/k, x%k表示 ceil 和 floor,观察求解。 code: ...
分类:其他   时间:2017-01-29 10:44:26    收藏:0  评论:0  赞:0  阅读:224
Python 【第十四章】django 数据操作之model 之多对多操作
model多对多操作 - 创建 a. 方式一: class B2G(models.Model): #人工创建第三张表 b_id = models.ForeignKey('Boy') g_id = models.ForeignKey('Girl') class Boy(models.Model): u ...
分类:编程语言   时间:2017-01-29 10:44:10    收藏:0  评论:0  赞:0  阅读:252
238. Product of Array Except Self
Given an array of n integers where n > 1, nums, return an array output such that output[i] is equal to the product of all the elements of nums except  ...
分类:其他   时间:2017-01-29 10:43:57    收藏:0  评论:0  赞:0  阅读:192
使用Netty实现通用二进制协议的高效数据传输
Netty是一个高性能的NIO通信框架,提供异步的、事件驱动的网络编程模型。使用Netty可以方便用户开发各种常用协议的网络程序。例如:TCP、UDP、HTTP等等。 Netty的最新版本是3.2.7,官网地址是:http://www.jboss.org/netty 本文的主要目的是基于Netty实 ...
分类:Web开发   时间:2017-01-29 10:43:32    收藏:0  评论:0  赞:0  阅读:1224
42. Trapping Rain Water
Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining. ...
分类:移动平台   时间:2017-01-29 10:43:14    收藏:0  评论:0  赞:0  阅读:360
407. Trapping Rain Water II
Given an m x n matrix of positive integers representing the height of each unit cell in a 2D elevation map, compute the volume of water it is able to ...
分类:移动平台   时间:2017-01-29 10:42:53    收藏:0  评论:0  赞:0  阅读:378
还在羡慕BAT等公司的大流量的架构吗,commonrpc 是一个以netty 传输协议框架为基础(支持FTP)
还在羡慕BAT等公司的大流量的架构吗?让你的java系统引用解耦,互相独立,commonrpc 就可以办到。commonrpc 是一个以netty 传输协议框架为基础, 自定义 spring shcema标签的rpc框架,不侵入任何业务代码,插件模式,即插即用;一个高性能分布式rpc框架,支持tcp ...
分类:Web开发   时间:2017-01-29 10:42:36    收藏:0  评论:0  赞:0  阅读:663
codechef January Lunchtime 2017简要题解
题目地址https://www.codechef.com/LTIME44 Nothing in Common 签到题,随便写个求暴力交集就行了 Sealing up 完全背包算出得到长度≥x的最小花费,然后对每条边的长度向上取整分别算一下。本来也是签到题的结果我调了1h+。。 Segment Que ...
分类:其他   时间:2017-01-29 10:42:15    收藏:0  评论:0  赞:0  阅读:263
[bzoj1044][HAOI2008][木棍分割] (二分+贪心+dp+队列优化)
Description 有n根木棍, 第i根木棍的长度为Li,n根木棍依次连结了一起, 总共有n-1个连接处. 现在允许你最多砍断m个连接处, 砍完后n根木棍被分成了很多段,要求满足总长度最大的一段长度最小, 并且输出有多少种砍的方法使得总长度最大的一段长度最小. 并将结果mod 10007。。。 ...
分类:其他   时间:2017-01-29 10:41:44    收藏:0  评论:0  赞:0  阅读:281
设置将Maven的jar包发布到lib
2,设置将Maven的jar包发布到lib下。 Add -> Java Build Path Entries -> Maven Dependencies -> Finish 设置完成效果图 ...
分类:编程语言   时间:2017-01-29 10:41:32    收藏:0  评论:0  赞:0  阅读:469
python enumerate()
enumerate(iterabe[,start]) 这个函数是一个迭代器? 可以给一个迭代器后面[]是起始的位置 如果[]中给了10则会从10开始 ...
分类:编程语言   时间:2017-01-29 10:40:17    收藏:0  评论:0  赞:0  阅读:536
CSS属性之relative
0.相对定位relative特点 相对定位relative元素总是会占据位置,所占据的位置是在relative元素没有设置left/top/right/bottom属性时的位置; 相对定位relative元素在设置定位时,不会影响其他元素; 相对定位relative元素在设置定位时,是相对于自身的定 ...
分类:Web开发   时间:2017-01-29 03:00:21    收藏:0  评论:0  赞:0  阅读:362
求1000数字中13个相乘最大值
#include<stdio.h>int main(void){ int i,b; long long large; long long t; int x[2000]; for(i=1;i<=1000;i++) { scanf("%1d",&x[i]); } large=1; for(i=1;i<= ...
分类:其他   时间:2017-01-29 00:27:21    收藏:0  评论:0  赞:0  阅读:352
333条   上一页 1 ... 15 16 17
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!