标签:pos NPU any std term 质量 ati name 函数模板
1 #include<bits/stdc++.h> 2 using namespace std; 5 const int _max = 10001; 6 // c1是保存各项质量砝码可以组合的数目 7 // c2是中间量,保存每一次的情况 8 int c1[_max], c2[_max]; 9 int main() 10 { //int n,i,j,k; 11 int nNum; // 12 int i, j, k; 13 while(cin >> nNum) 14 { 15 for(i=0; i<=nNum; ++i) // ---- ① 16 { 17 c1[i] = 1; 18 c2[i] = 0; 19 } 20 for(i=2; i<=nNum; ++i) // ----- ② 21 { 22 for(j=0; j<=nNum; ++j) // ----- ③ 23 for(k=0; k+j<=nNum; k+=i) // ---- ④ 24 { 25 c2[j+k] += c1[j]; 26 } 27 for(j=0; j<=nNum; ++j) // ---- ⑤ 28 { 29 c1[j] = c2[j]; 30 c2[j] = 0; 31 } 32 } 33 cout << c1[nNum] << endl; 34 } 35 return 0; 36 }
本题代码:
1 #include<bits/stdc++.h> 2 using namespace std; 3 #define ll long long 4 5 int c1[130], c2[130]; 6 int main() 7 { 8 int nNum; 9 while(cin >> nNum) 10 { 11 // 初始化 12 for(int i=0; i<=nNum; ++i) 13 { 14 c1[i] = 1; 15 c2[i] = 0; 16 } 17 for(int i=2; i<=nNum; ++i) 18 { 19 for(int j=0; j<=nNum; ++j) 20 for(int k=0; k+j<=nNum; k+=i) 21 c2[k+j] += c1[j]; 22 for(int j=0; j<=nNum; ++j) 23 { 24 c1[j] = c2[j]; 25 c2[j] = 0; 26 } 27 } 28 printf("%d\n", c1[nNum]); 29 } 30 return 0; 31 }
hdu 1028 Ignatius and the Princess III
标签:pos NPU any std term 质量 ati name 函数模板
原文地址:https://www.cnblogs.com/lu1nacy/p/10358501.html