HDU 1421 搬寝室 (dp)
摘要:
地址:http://acm.hdu.edu.cn/showproblem.php?pid=1421思路:动态规划dp借鉴代码如下: 1 #include<cstring> 2 #include<iostream> 3 #include<algorithm> 4 #define P(x,y) ((x-y)*(x-y)) 5 using namespace std; 6 int a[2010],d[2010][2010]; 7 int main() 8 { 9 int i,j,n,k;10 while(cin>>n>>k){11 for( 阅读全文
posted @ 2012-08-21 20:38 mycapple 阅读(190) 评论(0) 推荐(0) 编辑