京东C++后台笔试代码,多叉树、动态规划

求多叉树根节点的所有子树中节点数量的最大值。

#include <iostream>
#include <unordered_map>
#include <unordered_set>
#include <algorithm>

using namespace std;

unordered_map<int, unordered_set<int>> tree;

int getChildNum(int node, int parent)
{
    int childNum = 0;
    for (int child : tree[node])
    {
        if (child == parent)
        {
            continue;
        }
        childNum++;
        childNum += getChildNum(child, node);
    }
    return childNum;
}

int main()
{
    int n;
    cin >> n;
    for (int i = 0; i < n - 1; i++)
    {
        int x, y;
        cin >> x >> y;
        tree[x].insert(y);
        tree[y].insert(x);
    }
    int maxChildNum = 0;
    for (int child : tree[1])
    {
        int childNum = getChildNum(child, 1) + 1;
        maxChildNum = max(maxChildNum, childNum);
    }
    cout << maxChildNum << endl;
    return 0;
}

动态规划,以串的长度递增的顺序求最大值。

#include <iostream>
#include <string>
#include <vector>

using namespace std;

int main()
{
    int m;
    cin >> m;
    vector<string> strs(m);
    for (int i = 0; i < m; i++)
    {
        cin >> strs[i];
    }
    string t;
    cin >> t;
    int tLength = t.length();
    vector<int> counts(tLength + 1);
    string formed;
    for (int i = 0; i < tLength; i++)
    {
        int count = counts[i];
        formed += t[i];
        for (string &str : strs)
        {
            int strLength = str.length();
            if (strLength > i + 1)
            {
                continue;
            }
            if (str == formed.substr(i - strLength + 1))
            {
                count = max(count, counts[i - strLength + 1] + 1);
            }
        }
        counts[i + 1] = count;
    }

    int result = counts[tLength];
    cout << result << endl;

    return 0;
}
#京东##笔试题目#
全部评论
都100%AC了吗
点赞 回复 分享
发布于 2019-04-13 21:44
第二题可以KMP+贪心区间调度来着
点赞 回复 分享
发布于 2019-04-13 21:47
有没有dalao能帮我翻译成Java😂
点赞 回复 分享
发布于 2019-04-13 21:58

相关推荐

孤寡孤寡的牛牛很热情:为什么我2本9硕投了很多,都是简历或者挂,难道那个恶心人的测评真的得认真做吗
点赞 评论 收藏
分享
hso_:哈哈哈哈哈哈我没offer一样在同一道题开喷了
投递深圳同为数码等公司10个岗位
点赞 评论 收藏
分享
评论
点赞
31
分享
牛客网
牛客企业服务