package com.sprucetec.bone.common.redis;import com.alibaba.fastjson.JSON;import org.springframework.beans.factory.annotation.Autowired;import org.spri ...
分类:
其他好文 时间:
2016-10-10 16:35:59
阅读次数:
142
题意:给定一个体积,和一些物品的价值和体积,问你最大的价值。 析:最基础的01背包,dp[i] 表示体积 i 时最大价值。 代码如下: ...
分类:
其他好文 时间:
2016-10-06 22:27:29
阅读次数:
141
Tempter of the Bone Problem Description The doggie found a bone in an ancient maze, which fascinated him a lot. However, when he picked it up, the maz ...
分类:
其他好文 时间:
2016-09-28 22:26:01
阅读次数:
275
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1010 题目大意: 输入 n m t,生成 n*m 矩阵,矩阵元素由 ‘.’ 'S' 'D' 'X' 四类元素组成. S'代表是开始位置; 'D'表示结束位置;'.'表示可以走的路;'X'表示是墙。 问: ...
分类:
其他好文 时间:
2016-09-24 13:27:34
阅读次数:
187
Bone Collector II Time Limit: 5000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 4229 Accepted Submission(s): 22 ...
分类:
其他好文 时间:
2016-09-22 23:55:20
阅读次数:
248
//// Source code recreated from a .class file by IntelliJ IDEA// (powered by Fernflower decompiler)//package com.sprucetec.bone.common.redis;import co ...
分类:
其他好文 时间:
2016-09-05 13:38:38
阅读次数:
256
一、总论 一、医学影像学的工具——X线、CT、MRI X线的发现:伦琴 1895年 特点: 穿透性、感光性、荧光性、电离性 因此产生的医学意义:在胶卷上留下黑白的阴影—— 高密度影(白)中密度影(灰)低密度影(黑) 代表: bone muscle、cartilage pulmonary 科普:X线造 ...
分类:
其他好文 时间:
2016-08-30 19:48:33
阅读次数:
142
题目1461:Tempter of the bone 时间限制:1 秒 内存限制:128 兆 特殊判题:否 提交:2079 解决:719 题目描述: The doggie found a bone in an ancient maze, which fascinated him a lot. How ...
分类:
其他好文 时间:
2016-08-26 22:41:29
阅读次数:
198
Description Many years ago , in Teddy’s hometown there was a man who was called “Bone Collector”. This man like to collect varies of bones , such as d ...
分类:
其他好文 时间:
2016-08-16 10:37:19
阅读次数:
181
题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=1010 我认为的剪枝就是在本来的代码中加入一些附加条件使之不去进行多余的计算,防止超时 奇偶剪枝的知识链接 AC代码: 1 #include <iostream> 2 #include <cstdio> ...
分类:
其他好文 时间:
2016-08-12 16:32:15
阅读次数:
164