E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Otter
PAT-PAT (Advanced Level) PractiseBe Unique (20) 【一星级】
100ms内存限制65536kB代码长度限制16000B判题程序Standard作者CHEN,YueBeinguniqueissoimportanttopeopleonMarsthateventheirl
otter
yisdesignedinau
David_Jett
·
2015-11-19 21:00
入门
pat
研究生工资大数据告诉你读研多重要
硕士博士俱乐部-中国最大最活跃硕博微信平台来源/大四与研三(biyejiayou)作者/
OTTER
考研还是工作?这是一个问题。我们多多少少都有自己的理想。对这个人生中比高考还重要的岔路口有些恐慌。
硕士博士俱乐部
·
2015-11-18 00:00
Operating system coordinated thermal management
On transitions to a lower performance state due to the processor getting h
otter
, the processor's frequency
·
2015-11-13 18:42
System
poj 2540 H
otter
Colder 半平面交 不等式求区域面积
http://poj.org/problem?id=2540 在一个区间内寻找某一个点,每次走法会提示距目标是更近、更远还是相同。每次可确定一个目标必在的区域,求这个区域的面积。 假定寻找者从A点走到B点,做线段AB的中垂线,取距目标近的那一半。用半平面交即可求该区域。 注意Same时区域面积为0; 若有出现面积为0,则之后的都是0; 1 #include &
·
2015-11-13 16:44
poj
九方格抽奖插件
自己编写的九方格抽奖插件 参考网址http://demo.qpdiy.com/all/plugins/L
otter
y/l
otter
y--horse3/h/index.html 关键代码:
·
2015-11-13 11:19
插件
jquery抽奖插件+概率计算
demo l
otter
y.jquery.js $.fn.extend({ l
otter
y: function(conf) { var def = { lotIndex
·
2015-11-13 11:07
jquery
最小匹配hdu 3991 Harry P
otter
and the Present II
最近使用开发的过程中出现了一个小问题,顺便记录一下原因和方法--最小匹配 最小径路盖覆,用floyd求最短路,注意匹配时定点不是n个而是Q个,每一个都会可能有多个人须要物礼 把每一个点根据间时排下序得免超时  
·
2015-11-13 11:57
HDU
UVa 10325 - The L
otter
y
http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&category=15&problem=1266&mosmsg=Submission+received+with+ID+11830997 容斥原理 第一题 水! 代码:
·
2015-11-13 10:44
uva
Java数字抽奖游戏核心代码
Java]代码 package com.luiszhang.test; import java.util.Arrays; /** * NumberL
otter
yGame
·
2015-11-13 09:25
java
jquery转盘抽奖功能实现
一、用到的素材二、代码如下,重点是js部分jQuery九宫格大转盘抽奖#l
otter
y{width:570px;height:510px;margin:0pxauto;border:4pxsolid#ba1809
starof
·
2015-11-13 08:45
js一个抽奖的例子
nbsp; 朋友公司开年会,帮忙写了个抽奖的demo,源码如下,github中有程序: html: 1 <header> 2 l
otter
y
·
2015-11-13 08:40
js
hdu 3988 Harry P
otter
and the Hide Story——数论
比赛的时候素数表打搓了……后来实在没办法就改成给一个k就用根k的复杂度把它分解掉,然后4500MS蹭过去了……下来知道还是要打素数表的。。先开始打素数表的时候prime[0]怎么打都是1,搞得我烦死,后来我一看,我的MAXN和PRIME设定了以后,开数组的时候忘记的+10,导致最后越界,可能就会出错吧。改过来就没事了。。。先开始还犯了两个错误:1.k,n搞反了 2.分子分
·
2015-11-13 06:34
ide
【PAT】1041. Be Unique (20)
pat-a-practise/1041 题目描述: Being unique is so important to people on Mars that even their l
otter
y
·
2015-11-13 04:47
unique
显示BYTE流图片
string pathName=@"D:\VS 2008\L
otter
ySystem\Space\images\StandLevel\soldier1.jpg"; &
·
2015-11-13 02:37
byte
POJ Hurry Pl
otter
(DP)
Description A pl
otter
is a vector graphics printing device that connects to a computer to print graphical
·
2015-11-13 02:08
poj
POJ 2540 H
otter
Colder(半平面交)
Description The children's game H
otter
Colder is played as follows.
·
2015-11-13 00:02
poj
泛型系列<8>:使用泛型创建只读集合
例子如,L
otter
y类包含了中奖号码,它可以被访问,但不允许被改变: public class L
otter
y {
·
2015-11-12 23:57
泛型
网页配色相关网站
网页配色相关网站 亮度/对比度调色板 www.iridesign.co.kr 216网页安全颜色调色板 www.visibone.com 网页配色 www.p
otter
ybarnkids.com
·
2015-11-12 21:04
网站
poj 2540 H
otter
Colder 切割多边形
/* poj 2540 H
otter
Colder 切割多边形 用两点的中垂线切割多边形,根据冷热来判断要哪一半 然后输出面积 */ #include <stdio.h&
·
2015-11-12 18:02
poj
音乐节拍提取一
Itunes Link Name Time Artist BPM Album Genre Amazon Link Loneliest Soul 03:35 Grace P
otter
and
·
2015-11-12 14:19
音乐
php操作redis的两个个小脚本
下面是工作中写的两个小脚本 第一个脚本,查找有l
otter
y|的键,将他们全部删除|打印出来 <?
·
2015-11-12 14:55
redis
随机抽取游戏
.*; public class L
otter
yDrawing { public static void main(String[] args) { Scanner
·
2015-11-12 12:18
游戏
HDUOJ 1099——L
otter
y
L
otter
y Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java
·
2015-11-12 12:59
HDU
USACO2.1.1--The Castle
of luck almost beyond imagination, Farmer John was sent a ticket to the Irish Sweepstakes (really a l
otter
y
·
2015-11-12 11:00
USACO
DOM与SAX读取xml文件例程
以如下xml为例 <books> <book id="001"> <title>Harry P
otter
</
·
2015-11-12 10:02
读取xml
php随机抽奖实例分析
php header('Content-type:text/html;charset=utf-8'); /** * 抽奖工具 */ class l
otter
y_tool {
·
2015-11-12 09:41
PHP
利用PHP正则获取淘宝彩票页面的比赛信息
淘宝彩票 打开后在谷歌浏览器按ctrl+alt+j 可以查看网页信息 $url = "http://caipiao.taobao.com/l
otter
y/order/l
otter
y_jczq_spf.htm
·
2015-11-12 09:17
PHP
HDU 2985 Another l
otter
y(坑题)
点我看题目 题意 : 有n个人,每个人可以玩m轮,每一轮中每个参与者都有cj张票,第 i 轮的奖金是2的i次方,问你每个人所能赢得最多的奖金的概率是多少。 思路 : 这个题比较坑啊,其实不用去算前几轮的,因为题目中要能越多的奖金越好,所以肯定是最后一轮啊,所以把每个人手中最后一轮的票想加,然后占的那个比例就是要输出的。 #include <stdio.h> #inclu
·
2015-11-12 09:03
HDU
今天分享一个抽奖的类L
otter
y
/* * Copyright (C) 2014 Jason Fang (
[email protected]
) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with
·
2015-11-11 18:57
分享
我的彩票梦-十一运夺金模拟程序
具体彩票信息详见:http://caipiao.taobao.com/l
otter
y/order/l
otter
y_dj.htm 大傻曾在一个星期内赚了5000多,当时很羡慕。
·
2015-11-11 17:01
模拟
c#抽奖系统
// 中奖用户 currentL
otter
yNum = 0 ;
·
2015-11-11 17:33
C#
A+B in Hogwarts
DescriptionIfyouareafanofHarryP
otter
,youwouldknowtheschoolheisattendingto,theHogwartsSchoolforWitchcraftandWizardry.WhatyoumightnotknowisthatHarryisnevergoodatmath
wsnbb123456789
·
2015-11-11 14:00
Spring-2-A Magic Grid(SPOJ AMR11A)解题报告及测试数据
nbsp; 64bit IO Format:%lld & %llu Description Thanks a lot for helping Harry P
otter
·
2015-11-11 14:14
spring
HDU 4771 Stealing Harry P
otter
's Precious(BFS)
Stealing Harry P
otter
's Precious Time Limit: 2000/1000 MS (Java/Others) Memory
·
2015-11-11 13:10
HDU
SQL将某一字段多条记录合并为一个字段显示
select namelist=STUFF(REPLACE(REPLACE(( SELECT ID FROM [L
otter
yMatch] where GameDateTime >
·
2015-11-11 13:56
sql
POJ 2540 H
otter
Colder --半平面交
题意: 一个(0,0)到(10,10)的矩形,目标点不定,从(0,0)开始走,如果走到新一点是"H
otter
",那么意思是离目标点近了,如果是"Colder“,那么就是远了
·
2015-11-11 11:17
poj
UVA 10325 - The L
otter
y(容斥)
以前做过的一个题,忘记/gcd了,看来需要把以前的东西看一下啊。 1 #include <cstdio> 2 #include <cstring> 3 #include <iostream> 4 #include <cmath> 5 #include <algorithm> 6 using namespace s
·
2015-11-11 10:16
uva
[iOS UI进阶 - 2.4] 彩票Demo v1.4 转盘动画
开始-慢-块-慢-结束 设置其余的背景和按钮 code source: 彩票Demo https://github.com/hellovoidworld/HelloL
otter
y
·
2015-11-11 08:06
demo
[iOS UI进阶 - 2.3] 彩票Demo v1.3
iOS7的适配 block的循环引用 屏幕适配 code source: code source: https://github.com/hellovoidworld/HelloL
otter
y
·
2015-11-11 08:58
demo
[iOS UI进阶 - 2.2] 彩票Demo v1.2 UICollectionView基本
自定义UICollectionView 抽取控制器父类 “帮助”功能 code source: https://github.com/hellovoidworld/HelloL
otter
y
·
2015-11-11 08:57
Collection
[iOS UI进阶 - 2.1] 彩票Demo v1.1
设置按钮背景 6.设置值UIBarButtonItem样式 code source: https://github.com/hellovoidworld/HelloL
otter
y
·
2015-11-11 08:56
demo
[iOS UI进阶 - 2.0] 彩票Demo v1.0
做出有5个导航页面和相应功能的Demo 2.v1.0 版本搭建基本框架 code source:https://github.com/hellovoidworld/HelloL
otter
y
·
2015-11-11 08:56
demo
XML DOM 遍历Xml文档
bookstore> <book category="children"> <title lang="en">Harry P
otter
·
2015-11-11 07:02
xml
hdu 4771 Stealing Harry P
otter
's Precious
题目:给出一个二维图,以及一个起点,m个中间点,求出从起点出发,到达每一个中间的最小步数。 思路:由于图的大小最大是100*100,所以要使用bfs求出当中每两个点之间的最小距离。然后依据这些步数,建立一个新的图,使用dfs求出最佳步数。 代码: #include <iostream> #include <cstdio> #include <cstring&
·
2015-11-11 06:34
HDU
poj2540H
otter
Colder(半平面交)
链接 根据距离可以列得直线方程,附上初始矩形的四个顶点,依次用直线切割。 1 #include<iostream> 2 #include <stdio.h> 3 #include <math.h> 4 #include<cstring> 5 #include<algorithm> 6 #def
·
2015-11-11 05:09
poj
hdu 3987 Harry P
otter
and the Forbidden Forest 求割边最少的最小割
view code//hdu 3987 #include <iostream> #include <cstdio> #include <algorithm> #include <cstring> #include <queue> using namespace std; typedef long long ll; cons
·
2015-11-11 00:39
REST
Repeater里面加上if判断
= null) { if (((Active_L
otter
yResult)e
·
2015-11-11 00:14
if
php 彩票类 l
otter
y
. */ /** * L
otter
y class * * @author Raf
·
2015-11-10 23:31
PHP
1041. Be Unique (20)
Being unique is so important to people on Mars that even their l
otter
y is designed in a unique way.
·
2015-11-10 22:02
unique
POJ 2540 H
otter
Colder(半平面交)
开始时A在(0,0)点,每次A走到另一点上,B告诉A离目标位置远了(Colder)还是近了(H
otter
)还是一样(Same),在B每次告诉A后输出目标位置可能的面积。 思路:每次
·
2015-11-09 14:10
poj
上一页
34
35
36
37
38
39
40
41
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他