#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define INF_MIN 100000000 #define INF 1145141919 #define INF_MAX 2147483647 #define LL_MAX 9223372036854775807 #define EPS 1e-10 #define PI acos(-1) #define LL long long using namespace std; #define MAX_N 31 int N; LL S; LL P[MAX_N]; //値,文字列  typedef pair PP; vector Left, Right; vector ans_List; bool leftBig(LL l1, LL l2){ for(int i = 0; i < MAX_N; i++){ if(((l1 >> i) & 1) != ((l2 >> i) & 1)){ if((l1 >> i) & 1) return false; else return true; } } return false; } void mSort(){ for(int i = 0; i < ans_List.size(); i++){ for(int j = i+1; j < ans_List.size(); j++){ if(leftBig(ans_List[i], ans_List[j])){ //cout << ans_List[i] << " " << ans_List[j] << endl; swap(ans_List[i], ans_List[j]); } } } } int main(){ cin >> N >> S; for(int i = 0; i < N; i++){ cin >> P[i]; } //左側半分列挙 for(int i = 0; i < (1 << N/2); i++){ LL ss = 0; LL ret = 0; for(int j = 0; j < N/2; j++){ if((i >> j) & 1){ ss |= (1 << j); ret += P[j]; } } Left.push_back(PP(ret, ss)); } //右側半分列挙 for(int i = 0; i < (1 << (N+1)/2); i++){ LL ss = 0; LL ret = 0; for(int j = N/2; j < N; j++){ if((i >> (j-N/2)) & 1){ ss |= (1 << j); ret += P[j]; } } Right.push_back(PP(ret, ss)); } sort(Left.begin(), Left.end()); sort(Right.begin(), Right.end()); /* デバッグ printf("Left\n"); for(int i = 0; i < Left.size(); i++){ printf("%s%lld\n", Left[i].second.c_str(), Left[i].first); } printf("Right\n"); for(int i = 0; i < Right.size(); i++){ printf("%s%lld\n", Right[i].second.c_str(), Right[i].first); } */ //にぶたん for(int l = 0; l < Left.size(); l++){ LL tmpS = S - Left[l].first; int lr = lower_bound(Right.begin(), Right.end(), PP(tmpS,0)) - Right.begin(); int rr = lower_bound(Right.begin(), Right.end(), PP(tmpS+1,0)) - Right.begin(); while(lr < rr){ ans_List.push_back(Left[l].second | Right[lr].second); lr++; } } mSort(); for(int i = 0; i < ans_List.size(); i++){ stringstream ss; for(int j = 0; j < N; j++){ if((ans_List[i] >> j) & 1){ ss << j+1 << " "; } } string ans = ss.str(); cout << ans.substr(0, ans.length()-1) << endl; } return 0; }