题解 | #旅行Ⅰ#

旅行Ⅰ

https://www.nowcoder.com/practice/ecc6e261da68412caad810669b1e891f

/*
 * function Point(a, b){
 *   this.x = a || 0;
 *   this.y = b || 0;
 * }
 */
/**
 * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
 *
 * 
 * @param N int整型 N    
 * @param V int整型 V
 * @param A int整型一维数组 A
 * @param list Point类一维数组 List
 * @return int整型
 */
function Travel( N ,  V ,  A ,  list ) {
    // write code here
    let inDegreeList = new Array(N).fill(0);
    let successorList = new Array(N).fill([]);
    let topologyArr = [];
    let resList = [];
    for (let item of list) {
        inDegreeList[item.y - 1]++;
        successorList[item.x - 1] = [...successorList[item.x - 1], item.y - 1];
    }
    for (let i = 0; i < N; i++) {
        if (inDegreeList[i] === 0) {
            topologyArr.push(i);
        }
    }
    topologyArr.sort((b, a) => {
        return A[a] - A[b];
    });
    while (topologyArr.length) {
        let cur = topologyArr.pop();
        resList.push(cur + 1);
        for (let item of successorList[cur]) {
            inDegreeList[item]--;
            if (inDegreeList[item] === 0) {
                topologyArr.push(item);
            }
        }
        topologyArr.sort((b, a) => {
            return A[a] - A[b];
        });
    }
    let res = 0;
    resList.forEach(item => {
        if (V - A[item-1] >= 0) {
            V -= A[item-1];
            res++;
        }
    });
    return res;
}
module.exports = {
    Travel : Travel
};

js解,最初想法,没有优化
#牛客专项练习#
全部评论

相关推荐

我已成为0offer的糕手:别惯着,胆子都是练出来的,这里认怂了,那以后被裁应届被拖工资还敢抗争?
点赞 评论 收藏
分享
ArisRobert:统一解释一下,第4点的意思是,公司按需通知员工,没被通知到的员工是没法去上班的,所以只要没被通知到,就自动离职。就是一种比较抽象的裁员。
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务