摘要: 1 #include 2 #include 3 const int N = 100; 4 int a[N]; 5 int dp[N][33]; 6 inline int min(const int &a, const int &b) 7 { 8 return a < b ? a : b... 阅读全文
posted @ 2014-11-07 08:44 justPassBy 阅读(141) 评论(0) 推荐(0) 编辑