6

HDU2266 How Many Equations Can You Find(DFS)

 3 years ago
source link: https://arminli.com/hdu2266/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client
Armin's Blog

HDU2266 How Many Equations Can You Find(DFS)

December 04, 2015

题目链接

题意:在一组数中添加加号或减号使结果等于指定的数。

#include<bits/stdc++.h>
using namespace std;
long long n, ans, len;
char s[20];
void dfs(long long x, long long sum){ //第x位 当前和sum
    if(x == len){
        if(sum == n)
            ans++;
        return;
    }
    long long k = 0;
    for(int i = x; i < len; i++){
        k = k*10 + s[i] -'0';
        dfs(i+1, sum+k);
        if(x)
            dfs(i+1, sum-k);
    }
}
int main(){
    while(scanf("%s %lld", s, &n) != EOF){
        ans = 0;
        len = strlen(s);
        dfs(0, 0);
        cout << ans << endl;
    }
    return 0;
}

Profile picture

Written by Armin Li , a venture capitalist. [Weibo] [Subscribe]


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK