码迷,mamicode.com
首页 >  
搜索关键字:segment game    ( 7679个结果
zoj 3791 An Easy Game dp
An Easy GameTime Limit: 2 Seconds Memory Limit: 65536 KBOne day, Edward and Flandre play a game. Flandre will show two 01-strings s1 and s2, the leng....
分类:其他好文   时间:2014-06-06 23:24:46    阅读次数:248
linux与Windows下的heap
Windows提供Heap相关的API,可以创建多个Heap。但是Linux下只有一个意义上的Heap,就是Data Segment,由brk/sbrk系统调用来调整其大小。参考:http://man7.org/linux/man-pages/man2/sbrk.2.html
分类:Windows程序   时间:2014-06-06 19:11:14    阅读次数:290
jquery点击弹框外层关闭弹框
$(document).bind("click",function(e){ if($( e.target ).closest(".game-container").length == 0){ alert(111); $(".game-container").hide();//game-contain...
分类:Web程序   时间:2014-06-06 18:23:38    阅读次数:287
GL_子模组过账至总账通过SLA修改会计方法改变科目(案列)
2014-06-02 BaoXinjian一、摘要通过SLA会计方法的重新定义,修改从子模组过账至总账的默认会计方法,修改会计科目逻辑,实现按不同的会计法设定不同的会计方法二、案例1. 定义Mapping set2. 定义科目5个Segment对应的Account Derivation Rule3....
分类:其他好文   时间:2014-06-02 15:45:33    阅读次数:521
轻松解决oracle11g 空表不能exp导出的问题
轻松解决oracle11g 空表不能exp导出的问题[引用 2012-9-22 18:06:36]字号:大中小oracle11g的新特性,数据条数是0时不分配segment,所以就不能被导出。共两种解决方法,推荐使用第二种(最简单)。一、修改数据库参数alter system set deferre...
分类:数据库   时间:2014-06-02 06:31:17    阅读次数:271
zoj3791(An Easy Game) DP
题意:给出两个01字符串s1,s2.每次改变s1上m个位置的字符。问k步之后使得s1变为s2的方法有多少种。 解法:DP,关键是状态的设计。考虑还是唯一性和可传递性。dp[i][j]表示第i步后有j个不同到目标的走法数。记忆化搜索dp[0][dif](dif表示初始时不同字符的个数)。转移时候枚举选择情况即可。 代码:/*****************************...
分类:其他好文   时间:2014-06-02 04:58:01    阅读次数:216
ORA-01652: unable to extend temp segment by 128 in tablespace TEMP
解决办法 --创建中转临时表空间 2.createtemporarytablespaceTEMP02TEMPFILE‘/u01/app/oracle/oradata/perm/temp02.dbf‘SIZE1024MREUSEAUTOEXTENDONNEXT640KMAXSIZEUNLIMITED; --改变缺省临时表空间为刚刚创建的新临时表空间temp02 3.alterdatabasedefaulttemporarytablespace..
分类:其他好文   时间:2014-06-02 04:01:51    阅读次数:1213
ORA-10635: Invalid segment or tablespace type
对DML频繁的表执行shrink操作时报ORA-10635:Invalidsegmentortablespacetype 操作系统版本: $oslevel-s 5300-07-01-0748 数据库版本: SQL>select*fromv$version; BANNER ---------------------------------------------------------------- OracleDatabase10gEnterpri..
分类:其他好文   时间:2014-06-02 03:22:10    阅读次数:300
ORA-01652: unable to extend temp segment by 128 in tablespace TEMP01
收集数据库信息时候报ORA-01652错如下 SQL>EXECDBMS_STATS.gather_database_stats; BEGINDBMS_STATS.gather_database_stats;END; * ERRORatline1: ORA-01652:unabletoextendtempsegmentby128intablespaceTEMP01 ORA-06512:at"SYS.DBMS_STATS",line13210 ORA-06512:at"SYS..
分类:其他好文   时间:2014-06-02 03:20:19    阅读次数:316
HDU 4839 The Game of Coins 概率题。(母函数
The Game of Coins mark: #include"cstdio" #include"iostream" #include"queue" #include"algorithm" #include"set" #include"queue" #include"cmath" #include"string.h" #include"vector...
分类:其他好文   时间:2014-06-01 13:58:31    阅读次数:196
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!