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
strange
ExtJS 4 MVC Viewport和card布局
http://ext4all.com/post/a-little-bit-
strange
-navigation 效果图: app/view/Viewport.js Ext.define
·
2015-11-11 11:53
viewport
sdut2405
Strange
Square
参考着cz的写的 判重问题 :保存每一层的找过的节点 再在这一层找的时候 要保证与之前没有相同的 View Code 1 #include<stdio.h> 2 #include<string.h> 3 long count,f[11],s,x[11],a[11]; 4 void dfs(long v) 5 { 6 long j,
·
2015-11-11 10:59
du
HDU 1548 A
strange
lift(BFS)
题目:http://acm.hdu.edu.cn/showproblem.php?pid=1548 玩了两天,差点写不出了。。。。。。。 这题是由某个状态遍历其他状态的BFS 对于某一状态下有---->所在层:now_floor,从开始到该层按了几次按钮:step。。。。。 #include <queue> #include <a
·
2015-11-11 10:21
HDU
HDU 2899
Strange
fuction
Strange
fuction Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768
·
2015-11-11 10:04
HDU
POJ 2891
Strange
Way to Express Integers(中国剩余定理)
题目链接 虽然我不懂... 1 #include <cstdio> 2 #include <cstring> 3 #include <map> 4 #include <cmath> 5 using namespace std; 6 #define LL __int64 7 LL p[1001],o[1001]; 8
·
2015-11-11 10:20
Integer
SDUT 2405
Strange
Square(DFS)
题目链接 省赛热身赛C题,当时还不会DFS。。。我是直接暴力枚举了9个点,加上个小剪枝,去判重复的操作很重要。。。我在DFS中开一个数组记录在这一层是否搜过这个数。开始忘加Case , 2Y。 1 #include <stdio.h> 2 #include <string.h> 3 int p[10],o[10],k[10],z; 4 void dfs(
·
2015-11-11 10:34
DFS
HDU 1882
Strange
Billboard(位运算)
题目链接 题意 : 给你一个矩阵,有黑有白,翻转一个块可以让上下左右都翻转过来,问最少翻转多少次能让矩阵变为全白。 思路 : 我们从第一行开始枚举要翻转的状态,最多可以枚举到2的16次方,因为你只要第一行的确定了,第二行要翻转的也就确定了,所以第一行的状态决定了最后的状态。看了网上大神,真是让位运算废了啊,,,,,太复杂了。。。。。。 1 #include <iostream
·
2015-11-11 10:24
HDU
HDOJ 1548 HDU 1548 A
strange
lift ACM 1548 IN HDU
pid=1548 题目描述: A
strange
lift Time Lim
·
2015-11-11 07:23
ACM
HDOJ 2899 HDU 2899
Strange
fuction ACM 2899 IN HDU
pid=2899 题目描述:
Strange
fuction Time Limit:
·
2015-11-11 07:15
ACM
hdu 2899
Strange
fuction 二分
/* * hdu2899.c * * Created on: 2011-10-9 * Author: bjfuwangzhu */#include<stdio.h>#include<math.h>#define eps 1.0e-8double ff(double x, double y) { return 42.0 *
·
2015-11-11 06:41
HDU
cf520B-Two Buttons 【BFS】
http://codeforces.com/contest/520/problem/B Two Buttons Vasya has found a
strange
device
·
2015-11-11 03:47
button
SGU 211
Strange
Counter(构造)
题目链接:http://acm.sgu.ru/problem.php?contest=0&problem=211 题意:给定一个counter表示数的方法: A[N-1] * 2^(N-1) + A[N-2] * 2^(N-2) + ... + A[1] * 2^(1) + A[0]。其中A[]的元素只能是0,1,2,中的一个。给你M个添加操作,每个操作让counter增加2^
·
2015-11-11 03:49
count
.NET委托:一个C#睡前故事(.NET Delegates: A C# Bedtime Story) 双语版
Tight Coupling紧耦合 Once upon a time, in a
strange
land south of here, there was a worker named Peter.
·
2015-11-11 03:33
delegate
CF 305A——
Strange
Addition——————【暴力加技巧】
Strange
Addition time limit per test 2 seconds memory limit per test 256 megabytes input
·
2015-11-11 02:53
add
HDU4674 Trip Advisor
Problem Description There is a
strange
country somewhere which its transportation network was built
·
2015-11-11 01:14
HDU
POJ 2891
Strange
Way to Express Integers ★ (扩展欧几里德解同余式组)
题目链接: http://poj.org/problem?id=2891 题目大意: 很好的一道题,解同余式组: x = r1 (mod m1) x = r2 (mod m2) …… x = rp (mod mp) 思路: 因为m1, m2, m3, …… , mp不一定两两互素,所以不能直接用中国剩余定理. 不过,我们可以借用中国剩余定理的思想来解决这道题. 我们一个方程一个方程
·
2015-11-11 01:20
Integer
POJ 2891
Strange
Way to Express Integers ★ (扩展欧几里德解同余式组)
题目链接: http://poj.org/problem?id=2891 题目大意: 很好的一道题,解同余式组: x = r1 (mod m1) x = r2 (mod m2) …… x = rp (mod mp) 思路: 因为m1, m2, m3, …… , mp不一定两两互素,所以不能直接用中国剩余定理. 不过,我们可以借用中国剩余定理的思想来解决这道题. 我们一个方程一个方程
·
2015-11-11 01:19
Integer
poj1837——dp
nbsp;30000K Total Submissions: 11278 Accepted: 7017 Description Gigel has a
strange
·
2015-11-11 00:39
poj
HDU 1548 A
strange
lift【BFS】
题意:给出一个电梯,给出它的层数f,给出起点s,终点g,以及在每一层能够上或者下w[i]层,问至少需要按多少次按钮到达终点。 和POJ catch that cow一样,直接用了那一题的代码,发现一直wa, 后来才发现,POJ catch that cow是单组输入的,所以每次调用的时候不用清空队列,而这一题一次输入有多组数据--- 用这个清空队列 while(!q.empty()) q.
·
2015-11-10 23:28
HDU
Strange
Country II 暴力dfs
这题点的个数(<=50)有限, 所以可以纯暴力DFS去搜索 //#pragma comment(linker, "/STACK:16777216") //for c++ Compiler #include <stdio.h> #include <iostream> #include <fstream> #include &l
·
2015-11-10 23:50
count
Python IDLE模式下采用multiprocessing 子进程无法输出
2774585/child-processes-created-with-python-multiprocessing-module-wont-print Well, IDLE is a
strange
·
2015-11-09 14:39
process
杭电 1548 A
strange
lift(广搜)
pid=1548 A
strange
lift Time Limit: 2000/1000 MS (Java/Others) Memory Limit
·
2015-11-09 13:02
if
BestCoder Round #36 (hdu5200)
Strange
Class(离线)
转载请注明出处: http://www.cnblogs.com/fraud/ ——by fraud Trees Time Limit: 2000/1000 MS (Java/Others) Memory L
·
2015-11-09 13:03
Class
BestCoder Round #36 (hdu5198)
Strange
Class(水题)
www.cnblogs.com/fraud/ ——by fraud
Strange
·
2015-11-09 13:01
Class
动态规划练习 索引
2, Function Run Fun (POJ 1579) 3, Recaman's Sequence (POJ 2081) 4, World Cup Noise (POJ 1953) 5,
Strange
·
2015-11-09 12:45
动态规划
动态规划练习 5
题目:
Strange
Towers of Hanoi (POJ 1958) 链接:http://acm.pku.edu.cn/JudgeOnline/problem?
·
2015-11-09 12:08
动态规划
How blocks are implemented (and the consequences)
This post is a look at how clang implements blocks and how this implementation leads to a number of
strange
·
2015-11-09 11:01
sequence
Codeforces Round #295 (Div. 2)---B. Two Buttons( bfs步数搜索记忆 )
per test :256 megabytes input :standard input output : standard output Vasya has found a
strange
·
2015-11-08 16:02
codeforces
CF Two Buttons (BFS)
limit per test 256 megabytes input standard input output standard output Vasya has found a
strange
·
2015-11-08 16:20
button
LightOJ1318
Strange
Game(组合数求模)
题目链接:http://lightoj.com/volume_showproblem.php?problem=1318 题意:长度为L的单词由大小为K的字母表中的字母组成,这些单词组成的集合我们不妨称作S。每次从S中选出2个单词si,sj。若si和sj恰有M个位置上的字母不同,称(si,sj)为一个合法的二元组合。可知,合法的二元组合有很多。输出合法二元组合的个数模N。 思路:题目即是求K^L
·
2015-11-08 11:18
game
Hdu 1548 A
strange
lift
题意: 有一个建筑有N层,里面有一架电梯。给你一个起点层数和一个终点层数。在每一层都有一个按钮,按钮上面有一个数字,表示可以上或者下Ki层。然后你可以由起点开始选择上或者下(重复……),当你到达终点为止(或者不可能到达终点为止)。求你需要按按钮的次数,不能到达则输出-1。 思路: 这道题可以转换为一道最短路题目,对第i层,按钮数字为k[i],则如果满足相加<=N,则把i
·
2015-11-08 11:31
HDU
【poj2891】
Strange
Way to Express Integers
题意: 给出n个模方程x=a(mod r) 求x的最小解 题解: 这就是个线性模方程组的模版题- - 但是有一些要注意的地方 extgcd算出来的解x可能负数 要让x=(x%mo+mo)%mo 而且mo不是等于lcm(r1,r2) 而是r2/gcd(r1,r2) 代码: 1 #include <cstdio> 2 typedef long lon
·
2015-11-08 11:47
Integer
poj
Strange
Way to Express Integers 中国剩余定理
Strange
Way to Express Integers Time Limit: 1000MS Memory Limit: 131072K Total
·
2015-11-07 13:30
Integer
hdu 1548 A
strange
lift
pid=1548 A
strange
lift Description There is a
strange
lift.The lift can stop can at every floor as
·
2015-11-07 10:13
HDU
Codeforces Round #295 (Div. 2)——B——Two Buttons
Vasya has found a
strange
device.
·
2015-11-07 10:28
codeforces
Balance
Description Gigel has a
strange
"balance" and he wants to poise it.
·
2015-11-07 10:48
c
一个C#睡前故事[翻译]
.NET Delegates: A C# Bedtime Story Tight Coupling Once upon a time, in a
strange
land south of here
·
2015-11-06 07:03
C#
Strange
display
这个题一道区间覆盖题: 这里要用到线性规划: max(x , xi),max(y,yi)寻找顶点坐标; min(c , ci) 寻找最下的区域; 因此:r = c - x - y; View Code View Code #include<cstdio> #include<cstdlib> #include<cmath> #in
·
2015-11-05 08:04
display
poj 2891
Strange
Way to Express Integers
由于bi,bj不保证互素,不能用直接套中国剩余定理,做法是利用欧几里德扩展定理,将两个等式合并,然后再与其他的等式一一合并 对于x=b1 mod a1,x= b2 mod a2,设x=b1+m1*a1 , x = b2 + m2*a2;所以 b1 +m1*a1 = b2 + m2*a2; 所以a1*m1=b1-b2 mod a2,利用欧几里德扩展定理求出最小的非负m1,那么x=b1
·
2015-11-05 08:00
Integer
HDOJ1548(A
strange
lift)
A
strange
lift Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768
·
2015-11-05 08:37
if
[HDU 1882]--
Strange
Billboard(位运算+枚举)
zyxStar/p/4564335.html 在很多情况下(比如翻棋子)在搜索时涉及大量枚举往往导致超时,位运算则很好地解决了这个问题,方便又快捷 HDU 1882
Strange
·
2015-11-03 22:50
HDU
经典中英文
1.One is always on a
strange
road, watching
strange
scenery and listeningto
strange
music.
·
2015-11-02 18:01
编写你的第一个垃圾收集器
一天早上,我几乎要被一堆事情给整疯了——我得看一本书、处理一些工作上的事情、还要准备一场
Strange
Loop的演讲,然后这时我突然想到:“我该写一个垃圾收集器了
·
2015-11-02 18:10
垃圾收集
HDU 1548 A
strange
lift
该题是一道典型的BFS题,如果你用DFS你就会要把所有的肯能枚举,而BFS就不需要这样。 #include<stdio.h>#include<stdlib.h>struct T{ int x, n; }q[424];int BFS( int n,int k[],int start,int end ){ int first=0,tail=0,hash[
·
2015-11-02 18:28
HDU
BizTalk Administration - Schema referenced by Map has been deleted
While Modify a BizTalk Application Resource recently something went wrong, leaving BizTalk in a
strange
·
2015-11-02 17:45
reference
深度优先搜索:奇怪的电梯
Description There is a
strange
lift.The lift can stop can at every floor as you want, and there
·
2015-11-02 16:11
搜索
Windows 7 x64/Windows 2008 : The ‘Microsoft.Jet.OLEDB.4.0′ provider is not registered on the local machine.
times when the coexistence of 64 and 32 bit code on the same machine can cause all sorts of seemingly
strange
·
2015-11-02 15:14
Microsoft
poj_1958_
Strange
Towers of Hanoi
题目大意:将汉诺塔中的3跟柱子改为4根,求盘子数为1到12时将全部盘子从第一根移动到最后一根需要移动的次数 题目分析:当柱子数为3跟时,移动次数为2^n-1.当柱子数为4的时候,可以利用2根空的柱子移动盘子,盘子数n为1,2,3时 只需按顺序移动,各需1,3,5次,4个盘子以上: (1)首先移动其中的几个盘子 (2)把剩余的盘子移动到指定的位置 (
·
2015-11-02 14:16
poj
一个C#睡前故事[翻译]
.NET Delegates: A C# Bedtime Story Tight Coupling Once upon a time, in a
strange
land south of here
·
2015-11-02 14:34
C#
MDT 2010 – The task sequence has been suspended
Had a
strange
error today.
·
2015-11-02 13:05
sequence
上一页
4
5
6
7
8
9
10
11
下一页
按字母分类:
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
其他