题解 | #数位染色#

数位染色

http://www.nowcoder.com/practice/adf828f399de4932955734a4eac12757

#include<iostream>
using namespace std;
bool ans = false;
void dfs(string num,int temp,int val)
{
    if(temp >= val){
        if(temp == val){
            ans = true;
            return;
        }
        else
            return;
    }
    else if(num.size()){
        dfs(num.substr(1),temp + num[0] - '0',val);
        dfs(num.substr(1),temp,val);
    }
    else
        return;
}
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    string num;
    cin >> num;
    int val = 0;
    for(int i = 0;i < num.size();++i)
        val += num[i] - '0';
    if(val % 2 == 0)
        dfs(num,0,val / 2);
    if(ans)
        cout << "Yes";
    else
        cout << "No";
}
全部评论

相关推荐

服从性笔试吗,发这么多笔,现在还在发。
蟑螂恶霸zZ:傻 x 公司,发两次笔试,两次部门匹配挂,
投递金山WPS等公司10个岗位 >
点赞 评论 收藏
分享
Noob1024:一笔传三代,人走笔还在
点赞 评论 收藏
分享
拒绝无效加班的小师弟很中意你:求职意向没有,年龄、课程冗余信息可以删掉,需要提升项目经历。排版需要修改。
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务