码迷,mamicode.com
首页 >  
搜索关键字:crazy circuits    ( 312个结果
Trigger a TTL circuit from ECL levels
ECL circuits typically have relatively small logic spans of approximately 800 mV. Because of the small span, to drive TTL circuits from ECL levels nor...
分类:其他好文   时间:2014-11-28 15:57:54    阅读次数:194
Inverted bipolar transistor doubles as a signal clamp
A number of circuits, such as level detectors and AM demodulators, benefit from a rectifier with a low offset voltage. Silicon diodes have an offset o...
分类:其他好文   时间:2014-11-28 15:50:42    阅读次数:200
hdu 4445 Crazy Tank(物理过程枚举)
遇到物理题,千万不要一味的当成物理题去想着推出一个最终结果来,这样ACM竞赛成了物理比赛,出题人就没水平了。。。往往只需要基础的物理分析,然后还是用算法去解决问题。这题n小于等于200,一看就估计是暴力枚举能过。就枚举角度就行了。 1 #include 2 #include 3 #include 4...
分类:其他好文   时间:2014-11-28 06:13:20    阅读次数:148
HDU 3157 Crazy Circuits(有源汇上下界最小流)
HDU 3157 Crazy Circuits 题目链接 题意:一个电路板,上面有N个接线柱(标号1~N),还有两个电源接线柱 + -,给出一些线路,每个线路有一个下限值求一个可以让所有部件正常工作的总电流 没有则输出impossible 思路: 有源汇有上下界求最小流,建模方法为: 按无源汇先建图,跑超级源汇ss->tt一次,然后加入t->s,容量INF的边,在跑一次ss-...
分类:其他好文   时间:2014-11-12 23:03:42    阅读次数:305
hdu1381 Crazy Search(hash map)
题目意思:给出一个字符串和字串的长度,求出该字符串的所有给定长度的字串的个数(不相同)。题目分析:此题为简单的字符串哈hash map问题,可以直接调用STL里的map类。map snum;AC代码:[cpp] view plaincopyprint?#include#include#include...
分类:其他好文   时间:2014-11-11 07:04:26    阅读次数:231
hdu1381 Crazy Search(hash map)
题目意思: 给出一个字符串和字串的长度,求出该字符串的所有给定长度的字串的个数(不相同)。 题目分析: 此题为简单的字符串哈hash map问题,可以直接调用STL里的map类。map snum; AC代码: #include #include #include using namespace std; int main() { int t,n,nc; cin>>...
分类:其他好文   时间:2014-11-10 23:23:27    阅读次数:172
HDU 4445 Crazy Tank --枚举
题意: n个物体从高H处以相同角度抛下,有各自的初速度,下面[L1,R1]是敌方坦克的范围,[L2,R2]是友方坦克,问从某个角度抛出,在没有一个炮弹碰到友方坦克的情况下,最多的碰到敌方坦克的炮弹数。解法: 枚举角度,将pi/2分成1000份,然后枚举,通过方程 v*sin(theta)*t - 1...
分类:其他好文   时间:2014-11-10 17:37:18    阅读次数:210
《Crazy tea party》
Descriptionn participants of ?crazy tea party? sit around the table. Each minute one pair of neighbors can change their places. Find the minimum time ...
分类:其他好文   时间:2014-11-09 00:56:48    阅读次数:241
hdu 4445 Crazy Tank(枚举)
http://acm.hdu.edu.cn/showproblem.php?pid=4445 要求发射的炮弹在都不落在friendly tank区域的条件下落在enemy tank区域的最多数目。 直接暴力枚举角度。。 #include #include #include #include #include #include #include #incl...
分类:其他好文   时间:2014-11-08 22:14:55    阅读次数:212
C# 枚举绑定到ComboBox
来自:http://blog.csdn.net/crazy_frog/article/details/7705442方法一:绑定[csharp]view plaincopyenumTestEnum{zero=0,one=1,two=2}ComboBoxcbo=newComboBox();cbo.Da...
分类:Windows程序   时间:2014-11-02 13:51:41    阅读次数:459
312条   上一页 1 ... 24 25 26 27 28 ... 32 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!