Codeforces - 1106D. Lunar New Year and a Wander(图简单题)

Codeforces - 1106D. Lunar New Year and a Wander(图简单题)


题目链接
题目

给你一张图,n、m分别代表n个顶点和m条边,然后给你无向图的m条边,要你从1开始,找到一个遍历图的最小的字典序序列。注意图可能有重复边和自环。
在这里插入图片描述
在这里插入图片描述

解析

这题主要是处理字典序以及重复边两个问题:

  • 字典序可以用优先队列或者TreeSet来搞定;
  • 重复边利用Set去重即可,如果用ArrayListcontains方法会TLE

遍历过程就很简单了:

  • 首先将1,加入优先队列,用一个cnt遍历统计当前访问的不重复的节点,当cnt > n的循环退出;
  • 然后遍历当前节点的所有相邻节点,如果没有访问过,就加入优先队列,优先队列取出来的一定是当前字典序最小的;

下面是一开始的TLE代码:

import java.io.*;
import java.util.*;

public class Main {

    public static void main(String[] args){
        Scanner cin = new Scanner(new BufferedInputStream(System.in));
        PrintStream out = System.out;
        int n = cin.nextInt();
        int m = cin.nextInt();
        ArrayList<Integer>G[] = new ArrayList[n+1];
        for(int i = 0; i <= n; i++)
            G[i] = new ArrayList<>();
        boolean[] vis = new boolean[n+1];
        for(int i = 0; i < m; i++){
            int from = cin.nextInt();
            int to = cin.nextInt();
            if(!G[from].contains(to)) { // 防止重复的边,但是contains判断会超时
                G[from].add(to);
                G[to].add(from);
            }
        }
        PriorityQueue<Integer>pq = new PriorityQueue<>();
        pq.add(1);
        ArrayList<Integer>res = new ArrayList<>();
        int cnt = 1;
        while(cnt <= n){
            int poll = pq.poll();
            if(vis[poll])
                continue;
            vis[poll] = true;
            res.add(poll);

            for(int i = 0; i < G[poll].size(); i++){
                int to = G[poll].get(i);
                if(!vis[to]){
                    pq.add(to);
                }
            }
            cnt++;
        }
        for(Integer node : res)
            out.print(node + " ");
        out.println();
    }
}

利用HashSet+PriorityQueue通过的代码:

import java.io.*;
import java.util.*;

public class Main {

    public static void main(String[] args){
        Scanner cin = new Scanner(new BufferedInputStream(System.in));
        PrintStream out = System.out;
        int n = cin.nextInt();
        int m = cin.nextInt();
        HashMap<Integer, HashSet<Integer>>G = new HashMap<>();
        for(int i = 0; i <= n; i++)
            G.put(i, new HashSet<>());
        boolean[] vis = new boolean[n+1];
        for(int i = 0; i < m; i++){
            int from = cin.nextInt();
            int to = cin.nextInt();
            G.get(from).add(to);
            G.get(to).add(from);
        }
        PriorityQueue<Integer>pq = new PriorityQueue<>();
        pq.add(1);
        ArrayList<Integer>res = new ArrayList<>();
        int cnt = 1;
        while(cnt <= n){
            int poll = pq.poll();
            if(vis[poll])
                continue;
            vis[poll] = true;
            res.add(poll);
            for(int to : G.get(poll)){
                if(!vis[to]){
                    pq.add(to);
                }
            }
            cnt++;
        }
        for(Integer node : res)
            out.print(node + " ");
        out.println();
    }
}

其中PriorityQueueHashSet也可以只需要用TreeSet代替即可,因为TreeSet也保持了元素的有序性。

import java.io.*;
import java.util.*;

public class Main {

    static int n, m;
    static ArrayList[] G;
    static boolean[] vis;

    public static void main(String[] args) {
        Scanner cin = new Scanner(new BufferedInputStream(System.in));
        PrintStream out = System.out;
        n = cin.nextInt();
        m = cin.nextInt();
        G = new ArrayList[n + 1];
        vis = new boolean[n + 1];
        for (int i = 0; i <= n; i++)
            G[i] = new ArrayList<>();
        for (int i = 0; i < m; i++) {
            int a = cin.nextInt();
            int b = cin.nextInt();
            G[a].add(b);
            G[b].add(a);
        }
        TreeSet<Integer> ts = new TreeSet<>(); // 去重且有序
        ts.add(1);
        while (!ts.isEmpty()) {
            int cur = ts.pollFirst(); //取出最小的
            vis[cur] = true;
            out.print(cur + " ");
            for (int to : (ArrayList<Integer>) G[cur]) {
                if (!vis[to])
                    ts.add(to);
            }
        }
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值