Nvidia's Pascal to use stacked memory, proprietary NVLink interconnectbyScott Wasson— 6:50 PM on March 25, 2014GTC — Today during his opening keynote ...
分类:
其他好文 时间:
2014-07-22 22:50:34
阅读次数:
497
error opening trace file: No such file or directory (2)问题描述可以编译运行,但报错。问题原因及解决其实系统是找不到文件或者是目录!写了很多class文件后,在AndroidMainfest.xml中声明,后来又修改或者加了新的class,然后把...
分类:
移动开发 时间:
2014-07-22 00:39:36
阅读次数:
263
Balance
Time Limit: 1000MS
Memory Limit: 30000K
Total Submissions: 10299
Accepted: 6372
Description
Gigel has a strange "balance" and he wants to poise it. Actually, ...
分类:
其他好文 时间:
2014-07-19 23:46:59
阅读次数:
381
题意:给你C个挂钩,W个钩码,要你能使一个天平平衡
数据解释:
2 4
-2 3
3 4 5 8
以原点为支点,那么-2代表支点左边2处有一个钩码,同理3代表右边的点
所以案例数据有一个成立的例子是(3+5)*3=(4+8)*2或是(3+4+5)*2=8*3(力臂平衡)
有2种情况所以输出2;
思路:这个如果不是按照题目的分类说是DP我还想不到这个思路,我感觉我进步挺大了,...
分类:
其他好文 时间:
2014-07-19 23:30:27
阅读次数:
197
刚学习的扩展欧几里得算法,刷个水题
求解 线性不定方程 和 模线性方程
求方程 ax+by=c 或 ax≡c (mod b) 的整数解
1、ax+by=gcd(a,b)的一个整数解:
void ex_gcd(int a,int b,int &d,int &x,int &y)//扩展欧几里得算法
{
if(!b){d=a;x=1;y=0;}
else {ex_gcd(...
分类:
其他好文 时间:
2014-07-19 18:26:00
阅读次数:
226
这个只是个小经验,我至今不知道为什么。今天在Ant的build.xml中增加Kieker的监控时,好几次都碰到这个问题,感觉很莫名其妙:
一般报错类似于这个:
Error occurred during initialization of VM
agent library failed to init: instrument
Error opening zip file o...
分类:
Web程序 时间:
2014-07-16 17:19:11
阅读次数:
718
原SQL如下:SQL的主要问题是红色部分居然通过标量查询,反复的查找与SQL相同的基表,很显然这个可以用case when来简化。select a.TRAN_ID,a.AMOUNT,a.BALANCE,a.INVAMT,a.PROMISED,a.INVNO,a.RCLNUM,b.PROBLEM_ID...
分类:
数据库 时间:
2014-07-16 17:12:14
阅读次数:
332
Balance
Time Limit: 1000MS
Memory Limit: 30000K
Total Submissions: 10241
Accepted: 6330
Description
Gigel has a strange "balance" and he wants to poise it. Actually, ...
分类:
其他好文 时间:
2014-07-15 22:42:22
阅读次数:
272
Perl File Handling: open, read, write and close files#====================Opening filesSolution 1:Opening a file in perlopen FILE, "filename.txt" or d...
分类:
其他好文 时间:
2014-07-15 09:47:39
阅读次数:
222
CDN负载均衡(Load Balance)[1] 由于现有网络的各个核心部分随着业务量的提高,访问量和数据流量的快速增长,其处理能力和计算强度也相应地增大,使得单一的服务器设备根本无法承担。在此情况下,如果扔掉现有设备去做大量的硬件升级,这样将造成现有资源的浪费,而且如果再面临下一次业务量的提升时,...
分类:
其他好文 时间:
2014-07-14 19:24:30
阅读次数:
259