就Back-end而言:就Back-end的工作內容,主要的負責單位是CAD部們,數位工程師只是輔助的角色。如果是輔助的角色,那麼應該要注意哪些細節呢?1.建立primetime環境來驗證CAD做完APR後的netlist是否是符合自己的需求。2.請CAD給一套和他工作環境相同的primetime環...
分类:
其他好文 时间:
2014-04-30 04:30:48
阅读次数:
479
Problem 2171 防守阵地 IIAccept: 31Submit: 112Time
Limit: 3000 mSecMemory Limit : 32768 KBProblem
Description部队中总共有N个士兵,每个士兵有各自的能力指数Xi,在一次演练中,指挥部确定了M个需要防守的...
分类:
其他好文 时间:
2014-04-30 02:41:02
阅读次数:
364
LeetCode:Combinations这篇博客中给出了不包含重复元素求组合的5种解法。我们在这些解法的基础上修改以支持包含重复元素的情况。对于这种情况,首先肯定要对数组排序,以下不再强调修改算法1:按照求包含重复元素集合子集的方法LeetCode:Subsets
II算法1的解释,我们知道:若当...
分类:
其他好文 时间:
2014-04-28 14:00:43
阅读次数:
717
昨天 听caicai讲了几种关于图的存储方式 又学了好多 家有caicai 如有一宝
-> 转自 晓爷下面 我所讲的 都是基于 有向图的建图方式i:map[a][b] ---最基础的邻接矩阵 直接用二维数组ii: 1 struct
graph 2 { 3 int num; // ---指向...
分类:
其他好文 时间:
2014-04-28 06:05:45
阅读次数:
463
Fruit Ninja IITime Limit: 5000MS Memory limit:
65536K题目描述Have you ever played a popular game named "Fruit Ninja"?Fruit Ninja
(known as Fruit Ninja HD ...
分类:
其他好文 时间:
2014-04-28 05:10:47
阅读次数:
582
注意配置段中的区域包含关系.proxy_cache_patch
要在proxy_cache前已经定义.>>>> what seems to be the
problem?>>>>>>>> [emerg]: the size 52428800 of shared
memory zone "media"...
分类:
其他好文 时间:
2014-04-28 04:33:03
阅读次数:
1157
http://acm.fzu.edu.cn/problem.php?pid=2168最重要的是dp[k]=dp[k-1]-ans[k-1]+x[i]*m;ans[k-1]是m个数求和。Problem
2168 防守阵地 I Accept: 14Submit: 20 Time Limit: 3000 ...
分类:
其他好文 时间:
2014-04-28 02:30:56
阅读次数:
442
Page 30Perceptual blocks are obstacles that
prevent the problem-solver from clearly perceiving either the problem itself or
the information needed to ...
分类:
其他好文 时间:
2014-04-28 00:54:37
阅读次数:
403
Page 6:Natural tendency in problem solving is
to pick the first solution that comes to mind and run with it. The disadvantage
of this approach is you ...
分类:
其他好文 时间:
2014-04-27 21:27:40
阅读次数:
510
原题地址:http://www.rqnoj.cn/problem/2解题思路:背包问题。状态转移方程:DP[i][j]=max(DP[i-v[j]][j-1]+p[j]*v[j],DP[i][j-1])DP[i][j]表示最多话费i的钱,购买前j+1个物品所能达到的最大价值。解题代码:
1 #inc...
分类:
其他好文 时间:
2014-04-27 21:26:22
阅读次数:
537