#include<bits/stdc++.h> using namespace std; //g++ -O3 -static 5C_cuk/5C_cuk.cpp -std=c++11 -o 5C_cuk/5c_cuk //./5C_cuk/5c_cuk /* 5 2 7 4 4 1 */ int a[5010]; int sets[5010]; const int p = 1e9 + 7; int main(){ ios_base::sync_with_stdio(0); cin.tie(0); int n; cin >> n; for(int i = 0; i < n; i++){ cin >> a[i]; } sort(a, a + n); sets[0] = 1; for(int i = 0; i < n; i++){ for(int j = 5000; j >= a[i] - 1; j--){ int idx = min(j + a[i], 5000); sets[idx] += sets[j]; sets[idx] %= p; } } int result = 0; for(int i = 1; i <= 5000; i++){ result += sets[i]; result %= p; } cout << result; // for(int i = 1; i < 20; i ++){ // cout << sets[i] << " "; // } return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | #include<bits/stdc++.h> using namespace std; //g++ -O3 -static 5C_cuk/5C_cuk.cpp -std=c++11 -o 5C_cuk/5c_cuk //./5C_cuk/5c_cuk /* 5 2 7 4 4 1 */ int a[5010]; int sets[5010]; const int p = 1e9 + 7; int main(){ ios_base::sync_with_stdio(0); cin.tie(0); int n; cin >> n; for(int i = 0; i < n; i++){ cin >> a[i]; } sort(a, a + n); sets[0] = 1; for(int i = 0; i < n; i++){ for(int j = 5000; j >= a[i] - 1; j--){ int idx = min(j + a[i], 5000); sets[idx] += sets[j]; sets[idx] %= p; } } int result = 0; for(int i = 1; i <= 5000; i++){ result += sets[i]; result %= p; } cout << result; // for(int i = 1; i < 20; i ++){ // cout << sets[i] << " "; // } return 0; } |