PalindromesA regular palindrome is a string of numbers or letters that is the same forward as backward. For example, the string "ABCDEDCBA" is a pali....
分类:
其他好文 时间:
2014-09-04 00:01:57
阅读次数:
310
1、修改cocos2d-x-3.x\cocos\2d\platform\desktop\CCGLView.cpp onGLFWKeyCallback函数 1 static void onGLFWKeyCallback(GLFWwindow* window, int key, int scancod....
不考虑季节性变化的时间序列方法:1. 用有限的规模的移动滑动平均滤波器2.指数平滑算法 s(t+1)=ay(t)+(1-a)s(t)3.消除高频元素的平滑算法(不能理解)4.差分消除趋势的建模方法(差分需要自己定义,自定义的backward的元素,从书中来看拟合效果最好)???当然还有考虑季节性变....
分类:
其他好文 时间:
2014-08-27 12:27:57
阅读次数:
213
题目链接:
huangjing
思路:
这个题目想到dfs很容易,但是纠结在这么像杨辉三角一样计算那些值,这个我看的队友的,简直厉害,用递归计算出杨辉三角顶端的值。。。。具体实现详见代码。。。
题目:
Language:
Default
Backward Digit Sums
Time Limit: 1000MS
Memo...
分类:
其他好文 时间:
2014-08-20 21:12:12
阅读次数:
254
Description
FJ and his cows enjoy playing a mental game. They write down the numbers from 1 to N (1 <= N <= 10) in a certain order and then sum adjacent numbers to produce a new list with one fewer...
分类:
其他好文 时间:
2014-08-20 10:33:36
阅读次数:
256
Palindromes
A regular palindrome is a string of numbers or letters that is the same forward as backward. For example, the string "ABCDEDCBA" is a palindrome because it is the same when t...
分类:
其他好文 时间:
2014-08-09 21:36:09
阅读次数:
344
Magic xpa 2.5 Release NotesNew Features, Feature Enhancements and Behavior ChangesCall with Destination – Backward Compatibility EnhancementsIn Online...
分类:
其他好文 时间:
2014-08-04 13:54:57
阅读次数:
333
Palindromes
A regular palindrome is a string of numbers or letters that is the same forward as backward. For example, the string "ABCDEDCBA" is a palindrome because it is the same when t...
分类:
其他好文 时间:
2014-07-29 21:57:12
阅读次数:
308
UVA 10623 - Thinking Backward
题目链接
题意:给定一个数量,求用圆,椭圆,三角形分割平面,分割出该数量,输出所有情况
思路:有公式2 + 2m(m-1) + n(n-1) + 4mn + 3p(p-1) + 6mp + 6np
由于m和p都是[0,100],所以可以枚举m和p,去求出n,然后判断合不合适
代码:
#include
...
分类:
其他好文 时间:
2014-07-02 17:02:41
阅读次数:
179