字节跳动第三次面试——抖音红人java版

参考leetcode #851,貌似比那个还简单些

大致的思想就是创建一个ArrayList数组放置用户的直接粉丝,Set(HashSet)数组放置用户的所有粉丝。

详细见代码

import java.util.ArrayList;
import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;

public class RedMan {
    static ArrayList<Integer>[]graph;
    static Set<Integer>[]ct;

    public static void main(String[]args) {
        Scanner in=new Scanner(System.in);
        int N=in.nextInt();
        int M=in.nextInt();
        int[][]conn=new int[M][2];
        graph=new ArrayList[N+1];
        ct=new Set[N+1];//用户编号1开始,故创建N+1大小的数组
        for(int i=0;i<M;i++) {
            for(int j=0;j<2;j++) {
                conn[i][j]=in.nextInt();
            }
        }
        for(int i=0;i<N+1;i++) {graph[i]=new ArrayList<Integer>();ct[i]=new HashSet<Integer>();}//为每个List/Collection分配内存
        for(int[]edge:conn) graph[edge[1]].add(edge[0]);//将关系数组填充至graph
        int count=0;
        for(int []person:conn) {
            if(count_fans(person[1])==N) count++;
        }
        System.out.println(count);
    }
    //统计用户粉丝数
    public static int count_fans(int node) {
        ct[node].add(node);int count=1;
       //统计用户直接粉丝
        for(int fans:graph[node]) {
            if(!ct[node].contains(fans)) {//
                ct[node].add(fans);
                count++;
            }
        }
       //统计用户间接粉丝
        for(int fans:graph[node]) {
            for(int rfans:graph[fans]) {
                if(!ct[node].contains(rfans)) {//没放入ct的放进去并且count++;
                    ct[node].add(rfans);
                    count++;
                }
            }
        }
        return count;
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

打北边儿来了个哑巴

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值