Description
Children are used to playing with special cubes with letters written on thecubes' faces. The goal of the game is to compose words using such cubes. If youwant to compose the word "DOG",...
分类:
其他好文 时间:
2014-12-27 17:40:35
阅读次数:
297
几个月前偶然发现一个用于SSAS OLAP数据分析的Excel插件SmartPivot,都是非常实用的功能,如果你的BI解决方案是采用SSAS,那么请看看这个东西,一定会对你有很多启发,如果你的BI Report客户端采用的是Excel,那么这简直就是居家必备的绝配工具,最近几个月我用零碎的时间模仿...
分类:
其他好文 时间:
2014-12-11 11:47:36
阅读次数:
228
A. Vanya and Cubes手速不够快,被别人抢先了。。。#include#define eps 1e-9#define FOR(i,j,k) for(int i=j;in) { printf("%d\n",i-1); return 0; } } return 0;}B. Va...
分类:
其他好文 时间:
2014-12-04 21:26:42
阅读次数:
270
不知道到底是我的水平提高了还是CF的题目变水了。。。。。。
A - Vanya and Cubes
水题。。暴力枚举就可以。。
代码如下:
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespa...
分类:
其他好文 时间:
2014-12-03 21:29:43
阅读次数:
165
改了时区之后打cf更辛苦了啊。。。昨天没做,今天补了一下啊。
A. Vanya and Cubes
每次加的数规律性很明显就是:(i+1)*i/2。暴力枚举i就可以得到答案。
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include ...
分类:
其他好文 时间:
2014-12-02 16:41:33
阅读次数:
117
A. Vanya and Cubes题意:给你n个小方块,现在要搭一个金字塔,金字塔的第i层需要 个小方块,问这n个方块最多搭几层金字塔。分析:根据求和公式,有,按照规律直接加就行,直到超过n。 1 #include 2 3 int main() 4 { 5 int n; 6 ...
分类:
其他好文 时间:
2014-12-02 06:43:56
阅读次数:
205
题目大意:输出满足等式a^3 = b^3 + c^3 + d^3所有情况的a、b、c、d,
其中a<=200,a、b、c、d按非递减序列排列。
思路:直接遍历...
分类:
其他好文 时间:
2014-11-21 21:55:40
阅读次数:
242
翻转立方体#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #...
分类:
其他好文 时间:
2014-11-02 22:25:11
阅读次数:
244
题目:给定一个正整数N求出满足N = x^3 - y^3的y最小的正整数对(x,y)。
分析:数论,分治。
x^3 - y^3 = (x-y)(x^2 + xy + y^2);
因为,x、y都是正整数,且x > y,则x^3 - y^3 > (x-y)(3y^3);
因为N是1~10000(x-y)与(x^2 + xy...
分类:
其他好文 时间:
2014-10-28 12:15:01
阅读次数:
252
As you know, all the kids in Berland love playing with cubes. Little Petya has n towers consisting of cubes of the same size. Tower with number i consists
of ai cubes
stacked one on top of the oth...
分类:
其他好文 时间:
2014-10-20 23:23:25
阅读次数:
282