首页 > 猿辅导8.1笔试第二题代码,请各位大佬看看错在哪
头像
牛客许愿嘎嘎灵
编辑于 2020-08-01 21:20
+ 关注

猿辅导8.1笔试第二题代码,请各位大佬看看错在哪

代码提交时一直段错误,是爆栈了吗?看了好几遍,实在不知道哪错了!😫😔

#include <bits/stdc++.h>

using namespace std;
#define LL long long
const int MAXN = 1e5 +50;
const int MOD = 1e9 +3;
int N;
vector<int> child[MAXN];
int val[MAXN];

int maxSub(int root) {
    int ret = 0;
    for(int ch:child[root]) {
        int cur = maxSub(ch);
        if(cur > 0) ret = (ret + cur)% MOD;
    }
    if(val[root] > 0) ret = (ret + val[root]) % MOD;
    return ret;
}
int main() {
    while(cin >> N) {
        int v,fa;
        for(int i = 0; i < N; i++) child[i].clear();

        for(int i = 0; i < N; i++) {
            cin >> v >> fa;
            val[i] = v;
            if(i != 0) child[fa - 2].push_back(i);
        }

        /*for(int i = 0; i < N; i++) {
            cout << "ch:" << " ";
            for(int ch:child[i]) cout << ch << " ";
            cout << endl;
        }*/
        int res = maxSub(0);
        cout << res << endl;
    }
    return 0;
}


全部评论

(1) 回帖
加载中...
话题 回帖

相关热帖

历年真题 真题热练榜 24小时
技术(软件)/信息技术类
查看全部

近期精华帖

热门推荐