摘要:
区间DP 282. 石子合并 #include<iostream> #include<cstring> #include<algorithm> using namespace std; const int N = 305,INF = 0x3f3f3f3f; int f[N][N],a[N],s[N] 阅读全文
摘要:
一、段寄存器 数据寄存器:地址寄存器 段地址寄存器:偏移地址寄存器 ds sp es bp ss si cs di ip bx 8086CPU给了它20根地址线 0000 0000 0000 0000 ~ 1111 1111 1111 1111,0 ~ FFFFH 地址线的数量决定了CPU的寻址能力 阅读全文