程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> ZOJ 1204 Additive equations(深搜)

ZOJ 1204 Additive equations(深搜)

編輯:C++入門知識

ZOJ 1204 Additive equations(深搜)


Additive equations

Time Limit: 10 Seconds Memory Limit: 32768 KB

We all understand that an integer set is a collection of distinct integers. Now the question is: given an integer set, can you find all its addtive equations? To explain what an additive equation is, let's look at the following examples:
1+2=3 is an additive equation of the set {1,2,3}, since all the numbers that are summed up in the left-hand-side of the equation, namely 1 and 2, belong to the same set as their sum 3 does. We consider 1+2=3 and 2+1=3 the same equation, and will always output the numbers on the left-hand-side of the equation in ascending order. Therefore in this example, it is claimed that the set {1,2,3} has an unique additive equation 1+2=3.
It is not guaranteed that any integer set has its only additive equation. For example, the set {1,2,5} has no addtive equation and the set {1,2,3,5,6} has more than one additive equations such as 1+2=3, 1+2+3=6, etc. When the number of integers in a set gets large, it will eventually become impossible to find all the additive equations from the top of our minds -- unless you are John von Neumann maybe. So we need you to program the computer to solve this problem.

Input

The input data consists of several test cases.
The first line of the input will contain an integer N, which is the number of test cases.
Each test case will first contain an integer M (1<=M<=30), which is the number of integers in the set, and then is followed by M distinct positive integers in the same line.

Output

For each test case, you are supposed to output all the additive equations of the set. These equations will be sorted according to their lengths first( i.e, the number of integer being summed), and then the equations with the same length will be sorted according to the numbers from left to right, just like the sample output shows. When there is no such equation, simply output "Can't find any equations." in a line. Print a blank line after each test case.

Sample Input
3
3 1 2 3
3 1 2 5
6 1 2 3 5 4 6

Output for the Sample Input

1+2=3

Can't find any equations.

1+2=3
1+3=4
1+4=5
1+5=6
2+3=5
2+4=6
1+2+3=6


題意:給出n個數,從中選出一些數組成等式。輸出等式時,先按照等式的長度排序,長度相同時,等式裡的元素按照從小到大的順序排序。如果找不出等式,輸出Can't find any equations.

#include 
#include 
#include 
#include 
using namespace std;
vector  > ans;
int cur, flag;
const int N = 35;
int a[N], x[N];
void dfs(int i, int len, int sum) {
    if(i == len) {
        if(cur == sum) {
            flag = 1;
            vector  v;
            int s = 0;
            for(int j = 0; j < len; j++)
                if(x[j]) {
                    v.push_back(x[j]);
                    s += x[j];
                }
            v.push_back(s);
            ans.push_back(v);
        }
    }
    else {
        if(cur + a[i] <= sum) {
            x[i] = a[i];
            cur += a[i];
            dfs(i+1, len, sum);
            x[i] = 0;
            cur -= a[i];
        }
        dfs(i+1, len, sum);
    }
}

bool comp(const vector &a, const vector &b) {
    if(a.size() != b.size()) return a.size() < b.size();
    for(int i = 0; i < a.size(); i++) {
        if(a[i] < b[i]) return true;
        else if(a[i] > b[i]) return false;
    }
}

int main() {
    int T, n;
    scanf("%d",&T);
    while(T--) {
        scanf("%d", &n);
        for(int i = 0; i < n; i++)
            scanf("%d", &a[i]);
        ans.clear();
        sort(a, a+n);
        flag = 0;
        for(int i = 2; i < n; i++)
            dfs(0, i, a[i]);
        if(flag) {
            sort(ans.begin(), ans.end(), comp);
            for(int i = 0; i < ans.size(); i++) {
                for(int j = 0; j < ans[i].size() - 1; j++) {
                    if(j == 0) printf("%d", ans[i][j]);
                    else printf("+%d",ans[i][j]);
                }
                printf("=%d\n", ans[i][ans[i].size()-1]);
            }
        }
        else printf("Can't find any equations.\n");
        printf("\n");
    }
    return 0;
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved