AABBTime Limit: 20 SecMemory Limit: 256 MB题目连接TCDescriptionOne day, Jamie noticed that many English words only use the letters A and B. Examples of su...
分类:
其他好文 时间:
2015-07-24 06:44:17
阅读次数:
185
ChessFloorTime Limit: 20 SecMemory Limit: 256 MB题目连接TCDescriptionSamantha is renovating a square room. The floor of the room is an N times N grid of u...
分类:
其他好文 时间:
2015-07-24 01:24:53
阅读次数:
116
2333.。。 因为TC过少的参与者。加上不断fst 我掉了div2该。幸运的是完成的背div1该。。250水的问题500水的问题。。直接bfs扩展即可了注意判重。 我还用康托展开了真是多此一举。。1000这题理解错题意了。。我说看别人代码怎么看着不正确劲来着只是还是很easy的一道题二进制枚举烧哪...
分类:
其他好文 时间:
2015-07-22 17:48:56
阅读次数:
133
转载自http://blog.sina.com.cn/s/blog_6c363acf0100v4cz.html当DIV1里面嵌套有一个DIV2,当DIV2设置了浮动,那么DIV1是无法被撑开的,也就是说DIV2在这里相当于浮在了页面上方,跟DIV1不在同一个层面,导致了DIV2无法把DIV1给撑开,...
分类:
其他好文 时间:
2015-07-20 19:14:31
阅读次数:
196
当父容器包含的子元素是float的,如果子元素的高度超过了父容器,则会‘撑破‘:如:<divclass=‘div1‘>
<divclass=‘div2‘>
....
</div>
</div>.div1{
height:200px;
}
.div2{
height:300px;
float:left;
}解决方法:在父容器上加.clearfix{overflow:auto;}
分类:
Web程序 时间:
2015-07-20 16:54:47
阅读次数:
125
margin-top没有效果怎么办?代码如下所示:(其中#div2嵌套在#div1中)#div1{ width:100px; height:100px; background:green;}#div2{ margin-top:10px; width:50px; height:50px; backgr...
分类:
其他好文 时间:
2015-07-19 23:15:34
阅读次数:
195
I come back! 还是写博客记录比较爽。。假期加油!CF312(div2) C.Amr and Chemistry脑洞题思路:结果是求n个数相同时进行操作的步数,我们可以把每个数所有变化情况都记录下来,并记录出现的次数,因为只有用1e5的数据量。可以利用二进制的特质,比如对数a1,把a1>=...
分类:
其他好文 时间:
2015-07-19 17:53:20
阅读次数:
132
html-->id选择器class类选择器你好js/***CreatedbyAdministratoron2015/4/40004.*/$(function(){$('#div1').css('color','red')});$(function(){$('.div2').css('color','...
分类:
其他好文 时间:
2015-07-16 19:32:30
阅读次数:
182
flaot脱离当前文档流,对父级,和后面的元素产生了影响定位方法(1)父级div定义height 1 2 3 4 5 6 Examples 7 14 15 16 17 Left18 Right19 20 21 div2...
分类:
Web程序 时间:
2015-07-16 16:27:07
阅读次数:
144
1.代码演示:element.html如下:display span1 span2 div1 div2同时element.css文件,如下:@charset "utf-8";/* CSS Document */.s1 { background-color:pin...
分类:
Web程序 时间:
2015-07-06 17:26:37
阅读次数:
135