#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; int main(){ cin >> N >> S; for(int i = 0; i < N; i++){ cin >> P[i]; } //左側半分列挙 for(int i = 0; i < (1 << N/2); i++){ stringstream ss; LL ret = 0; for(int j = 0; j < N/2; j++){ if((i >> j) & 1){ ss << j + 1 << " "; ret += P[j]; } } Left.push_back(PP(ret, ss.str())); } //右側半分列挙 for(int i = 0; i < (1 << (N+1)/2); i++){ stringstream ss; LL ret = 0; for(int j = N/2; j < N; j++){ if((i >> (j-N/2)) & 1){ ss << j + 1 << " "; ret += P[j]; } } Right.push_back(PP(ret, ss.str())); } 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); } */ vector ans_List; //にぶたん for(int l = 0; l < Left.size(); l++){ string tmp = ""; LL tmpS = S - Left[l].first; int lr = lower_bound(Right.begin(), Right.end(), PP(tmpS,tmp)) - Right.begin(); int rr = lower_bound(Right.begin(), Right.end(), PP(tmpS+1,tmp)) - Right.begin(); while(lr < rr){ ans_List.push_back(Left[l].second + Right[lr].second); lr++; } } for(int i = 0; i < ans_List.size(); i++){ ans_List[i] = ans_List[i].substr(0, ans_List[i].length() - 1); } sort(ans_List.begin(), ans_List.end()); for(int i = 0; i < ans_List.size(); i++){ cout << ans_List[i] << endl; } return 0; }