亲身体验,不要再拖! 拖! 拖!拖延症其实是自我管理的一种放松,意志力极强或者非常自律的人是很少有拖延症的。我一直在思考对于像自己这样意志力薄弱的人,该如何摆脱拖延的坏习惯呢?方法总是有的,效果也总是有的。>>>Anya拖延症的成因Procrastination↑根据 University of C...
分类:
其他好文 时间:
2015-07-13 20:36:02
阅读次数:
178
题目链接:http://codeforces.com/problemset/problem/525/E
题意:
给定n个数,k个感叹号,常数S
下面给出这n个数。
目标:
任意给其中一些数变成阶乘,至多变k个。
再任意取一些数,使得这些数和恰好为S
问有多少方法。
思路:
三进制状压,0代表不取,1代表取阶乘,2代表直接取;
中途查找,节...
分类:
其他好文 时间:
2015-07-07 09:29:24
阅读次数:
103
3D dungeon时间限制:1000ms | 内存限制:65535KB难度:2描述You are trapped in a 3D dungeon and need to find the quickest way out! The dungeon is composed of unit cubes...
分类:
其他好文 时间:
2015-07-05 13:42:47
阅读次数:
95
题目链接:点击打开链接
题意:
给定n个数,k个感叹号,常数S
下面给出这n个数。
目标:
任意给其中一些数变成阶乘,至多变k个。
再任意取一些数,使得这些数和恰好为S
问有多少方法。
思路:
三进制状压,中途查找。
#include
#include
#include
#include
#include
#include
#include
#include
t...
分类:
其他好文 时间:
2015-07-04 23:33:42
阅读次数:
199
广播 在一个Cubes上挂载inttro_BoradCastMessate脚本public class Inttro_BroadCastMessate : MonoBehaviour { // Use this for initialization void Start () { ...
分类:
编程语言 时间:
2015-06-02 21:31:35
阅读次数:
266
DescriptionAnya has bought a new smartphone that uses Berdroid operating system. The smartphone menu has exactly n applications, each application has ...
分类:
其他好文 时间:
2015-05-22 00:28:05
阅读次数:
114
Cube paintingWe have a machine for painting cubes. It is supplied with three different colors: blue, red and green. Each face of the cube gets one of ...
分类:
其他好文 时间:
2015-05-19 12:53:48
阅读次数:
133
Description
You are trapped in a 3D dungeon and need to find the quickest way out! The dungeon is composed of unit cubes which may or may not be filled with rock. It takes one minute to move one un...
分类:
其他好文 时间:
2015-05-04 08:42:25
阅读次数:
130
题目:给你n个正方体,每个面有一种颜色,他们按照重量递增的方式排列着,现在要求把他们排成一个塔,
每层一个正方体,要求每个正方体上面的正方体的重量全都小于他,还要保证接触的面上的颜色相同,
问最高能摆放多少层,答案不唯一。
分析:dp,动态规划,lis。最大不下降子序列,已经排好序,满足接触的面颜色相同即可。
定义状态...
分类:
其他好文 时间:
2015-04-28 14:12:10
阅读次数:
126
We have a machine for painting cubes. It is supplied with three different colors: blue, red and green. Each face of the cube gets one of these colors....
分类:
其他好文 时间:
2015-04-26 15:04:55
阅读次数:
142