陶醉吐司

文章
4
资源
0
加入时间
2年10月17天

POJ 3268 Silver Cow Party(取反最短路)

思路:一个有向图要求来回的最短路,一个经典的做法是保存一个原图,一个边取反的图,然后跑两遍spfa就可以了#include#include#include#include#includeusing namespace std;const int maxn = 1005;#define inf 1e9vector >e1[maxn];vector >e2[maxn];

matlab离散信号分析,MATLAB信号与系统分析(二)——离散时间信号与系统的时域分析...

一、离散信号的表示1、一个离散信号需要用两个向量来表示:(1)离散信号的幅值(2)离散信号的位置信息2、用MATLAB实现离散信号的可视化(1)不能利用符号运算来表示(2)绘制离散信号一般采用stem命令。(3)x(n)——stem(n,x)3、一个demo: clear all;x=[-1,2,3,3,5,-4];n=[-2,-1,0,1,2,3];figure(1)stem(n,x),axis...