码迷,mamicode.com
首页 >  
搜索关键字:ice    ( 9476个结果
数据结构之链表、栈和队列 java代码实现
定义抽象节点类Node: package cn.wzbrilliant.datastructure; /** * 节点 * @author ice * */ public abstract class Node { private Node next; public Node(){ next=null; } public void setNext(Node next...
分类:编程语言   时间:2015-08-04 00:43:53    阅读次数:133
数据结构之链表、栈和队列 java代码实现
定义抽象节点类Node: 1 package cn.wzbrilliant.datastructure; 2 3 /** 4 * 节点 5 * @author ice 6 * 7 */ 8 public abstract class Node { 9 private Node ne...
分类:编程语言   时间:2015-08-04 00:37:43    阅读次数:130
HDOJ Ice_cream's world I 2120【并查集判断成环】
Ice_cream's world I Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 848    Accepted Submission(s): 494 Problem Description ice_cream's...
分类:其他好文   时间:2015-07-30 21:25:19    阅读次数:142
Ice_cream's world I--hdu2120
Ice_cream's world ITime Limit: 3000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 839Accepted Submission(s): 488P...
分类:其他好文   时间:2015-07-29 22:50:37    阅读次数:261
hdoj 2120 Ice_cream's world I
Ice_cream's world I Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 814    Accepted Submission(s): 478 Problem Description ice_cream's ...
分类:其他好文   时间:2015-07-29 21:30:11    阅读次数:125
杭电2122--Ice_cream's world III
Ice_cream’s world III Time Limit: 3000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 1146Accepted Submission(s):...
分类:其他好文   时间:2015-07-27 18:25:01    阅读次数:105
IceCave
Description You play a computer game. Your character stands on some level of a multilevel ice cave. In order to move on forward, you need to descend one level lower and the only way to do this is t...
分类:其他好文   时间:2015-07-26 22:46:04    阅读次数:346
CodeForces 540C Program D
DescriptionYou play a computer game. Your character stands on some level of a multilevel ice cave. In order to move on forward, you need to descend on...
分类:其他好文   时间:2015-07-26 20:35:03    阅读次数:133
HDU 3305 Ice-sugar Gourd
Ice-sugar GourdTime Limit: 5000/2000 MS (Java/Others)Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 936Accepted Submission(s): 329Probl...
分类:其他好文   时间:2015-07-26 00:18:06    阅读次数:160
540C: Ice Cave
题目链接 题意: n*m的地图,'X'表示有裂痕的冰块,'.'表示完整的冰块,有裂痕的冰块再被踩一次就会碎掉,完整的冰块被踩一次会变成有裂痕的冰块, 现在告诉起点和终点,问从起点能否走到终点并且使终点的冰块碎掉。不能原地跳。起点和终点可能会在同一个位置。 解题思路: 在只走‘.’的情况下把终点的冰踩...
分类:其他好文   时间:2015-07-25 21:23:24    阅读次数:123
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!