摘要: 开始用递归总是超时,后来发现每 7 一循环,不过要根据 f [3] 把0, 1, 2, 3, 4, 5, 6的次序改了,但这样我写不出来,后来百度说49一循环,解决了。 #include using namespace std;int main(){ int a,b; long in... 阅读全文
posted @ 2015-09-18 12:45 StevenLuke 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 可以推导出:A1 = n / (n + 1) * A0 + 1 / (n + 1)* An+1 - 2*n / (n + 1)* C1 - (2*n - 2)/(n + 1)* C2 - ........2 / (n + 1)* Cn-1。 #include #include using nam... 阅读全文
posted @ 2015-09-18 10:58 StevenLuke 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 组合 + 错排 错排公式 的 d [ i ] = (i - 1) * ( d[i - 1] + d[ i - 2] ); double i, t1=1, t2=1, t3=1; 我开始写的是 int ,总是WA,写成 double 就AC了,这种情况碰到太多了。 #include double... 阅读全文
posted @ 2015-03-18 11:04 StevenLuke 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 我把cre,sco写成 int 类型会超时,不解。 #include int main() { int n, k, flag; double a1, a2, cre, sco; scanf("%d", &n); while(n--) { a1 = 0.0; a2 = 0.0... 阅读全文
posted @ 2015-03-17 22:07 StevenLuke 阅读(136) 评论(0) 推荐(0) 编辑
摘要: #include int main() { int n, cScore, oScore, m, ans, i,d[6]={2, 3, 4, 5, 6, 7}; scanf("%d", &n); while(n--) { ans = 0; scanf("%d%d%d", &m, &cSco... 阅读全文
posted @ 2015-03-17 21:26 StevenLuke 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 从n / 2处开始距离最短。 #include #include int cmp(const int *a, const int *b) { return *a - *b;}int main() { int m, n, i, ans, a[10001]; while(~scanf("%d", ... 阅读全文
posted @ 2015-03-14 17:20 StevenLuke 阅读(150) 评论(0) 推荐(0) 编辑
摘要: #include #include int main() { int n, i; __int64 d[40][2]={ {1, 2} }; /*d[i][0] indicate the sequence's last char is not O d[i][1] opposite*/ for... 阅读全文
posted @ 2015-03-13 22:24 StevenLuke 阅读(122) 评论(0) 推荐(0) 编辑
摘要: #include int main() { int n, i, k, b; __int64 a[50]={1, 2, 3}; for(i=3; ib ? 0 : a[b-k-1]); } } return 0;} 阅读全文
posted @ 2015-03-13 14:11 StevenLuke 阅读(107) 评论(0) 推荐(0) 编辑
摘要: a[2] = 6; #include int main() { int n, i; __int64 a[50]={3, 6, 6}; for(i=3; i<50; i++) a[i] = a[i-1] + a[i-2] * 2; while(~scanf("%d", &n)) { pr... 阅读全文
posted @ 2015-03-13 13:51 StevenLuke 阅读(129) 评论(0) 推荐(0) 编辑
摘要: #include int main() { int n, i; __int64 a[50]={1, 2, 3}; for(i=3; i<50; i++) { a[i] = a[i-1] + a[i-2]; } while(~scanf("%d", &n)) { printf("%I... 阅读全文
posted @ 2015-03-13 13:38 StevenLuke 阅读(102) 评论(0) 推荐(0) 编辑