携程笔试8.30

终于AK了一回

第三题代码
import java.util.*;

public class Main {

    public static int n;
    public static int[] pre;
    public static int[] total = new int[3];
    public static List<Integer>[] tree;
    public static Map<Integer, int[]>[] cntMap;
    public static String s;

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        n = sc.nextInt();
        pre = new int[n];
        tree = new List[n];
        for (int i = 0; i < n; i++) {
            tree[i] = new ArrayList<>();
        }
        cntMap = new Map[n];
        for (int i = 0; i < n; i++) {
            cntMap[i] = new HashMap<>();
        }

        sc.nextLine();
        s = sc.nextLine();
        for (int i = 0; i < s.length(); i++) {
            char c = s.charAt(i);
            calc(total, c);
        }

        for (int i = 0; i < n-1; i++) {
            int u = sc.nextInt();
            int v = sc.nextInt();
            tree[u-1].add(v-1);
            tree[v-1].add(u-1);
            pre[u-1]++;
            pre[v-1]++;
        }

        initCntMap();
        System.out.println(solution());
    }

    private static int solution() {
        int res = 0;
        for (int i=0; i<n; ++i) {
            for (Map.Entry<Integer, int[]> entry : cntMap[i].entrySet()) {
                int[] cnt = entry.getValue();
                if (judge(cnt))
                    res++;
            }
        }
        return res;
    }

    private static void initCntMap() {
        Queue<Integer> q = new LinkedList<>();
        for (int i=0; i<n; ++i) {
            if (pre[i] == 1)
                q.offer(i);
        }
        while (!q.isEmpty()) {
            int u = q.poll();
            int[] cnt = new int[3];
            calc(cnt, s.charAt(u));
            int k = -1;
            for (int i = 0; i < tree[u].size(); i++) {
                int v = tree[u].get(i);
                pre[v]--;
                if (pre[v] == 1)
                    q.offer(v);
                if (cntMap[v].containsKey(u)) {
                    merge(cnt, cntMap[v].get(u));
                } else {
                    k = v;
                }
            }
            if (k >= 0)
                cntMap[u].put(k, cnt);
        }
    }

    private static void merge(int[] target, int[] other) {
        for (int i=0; i<3; ++i)
            target[i] += other[i];
    }

    private static void calc(int[] cnt, char c) {
        if (c == 'r')
            cnt[0]++;
        else if (c == 'g')
            cnt[1]++;
        else if (c == 'b')
            cnt[2]++;
    }

    private static boolean judge(int[] cnt) {
        for (int i=0; i<3; ++i) {
            if (cnt[i] == 0 || cnt[i] == total[i])
                return false;
        }
        return true;
    }
}


#携程笔试#
全部评论
有无大佬知道,第二题这种简单题为啥golang会超时,只能过80
1 回复 分享
发布于 2022-08-30 21:11 浙江
大佬第二题怎么做,能过用例但是通过率0
1 回复 分享
发布于 2022-08-30 21:11 江苏
三色树咋做呀,大佬
点赞 回复 分享
发布于 2022-08-30 20:58 上海
init_map没看懂,参数不对
点赞 回复 分享
发布于 2022-09-02 20:50 浙江

相关推荐

03-21 15:33
惠州学院 市场
点赞 评论 收藏
分享
序&nbsp;朋友们,好久不见。&nbsp;笔者在过去消失的五个月里被困在情绪牢笼中过的相当煎熬,一度丢失自己,觉得整个世界都是昏暗的。&nbsp;庆幸的是靠着自己纯硬扛也是走出来了。表达欲再度回归,所以真的很开心还有机会能在再和大家见面。&nbsp;破碎秋招&nbsp;抑郁情绪的引爆点必然是秋招期间遭受的打击了,从去年九月份腾讯转正被告知失败之后就开始疯狂投递简历,每天都在经历:简历挂、一面挂、二面挂、三面挂、HR面挂,每天睁开眼就被无所适从的挫败感包围。&nbsp;秋招的特点是即便流程走到最后一步也不一定会&nbsp;offer,因为还需要进入大池子进行横向对比,俗称泡池子,而这一泡我的大多数面试流程到后面就没了后文,这一度让我感觉非常绝望。我深知自己学历并...
SoNiC_X:我已经工作快2年了,当时高考没考好没去到想去的学校,觉得天要塌了;校招找不到工作,觉得天要塌了;现在工作觉得看不到未来,觉得天要塌了;最近最大的感悟就是:天会一直塌,但是生活也会一直继续下去,还是要调整好自己的心态,不要因为一时的困难把自己困住,要记住完蛋的日子永远在后头
点赞 评论 收藏
分享
评论
2
12
分享

创作者周榜

更多
牛客网
牛客企业服务