首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴liuchen8899的代码贴全部
#include<cstdio>  
    #include<iostream>  
    #include<cstring>  
    using namespace std;  
    int dp[45010][105],w[105];  
    int max(int a,int b)  
    {  
        return a>b?a:b;  
    }  
    int main()  
    {  
        int i,j,k,n,sum,sum1,sum2,num,ans;  
......................
阅读全部 | 2015年7月27日 22:25
1
liuchen8899