美团2024春招第一场笔试(技术) - 小美的朋友关系

先用Java尝试写了一遍,一直超时,然后,让GPT 1:1 翻译成C++通过了。是我Java不配吗?还是我Java写的太臭了?

  • Java 输入输出 printf 和 scanner 背大锅。换成 BufferedReader 和 BufferedWriter 是可以通过的。Java AC代码如下:
import java.io.*;
import java.util.*;

public class Main {

    static Map<Integer, Integer> roots = new HashMap<>();

    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));

        String[] nmq = br.readLine().split(" ");
        int n = Integer.parseInt(nmq[0]);
        int m = Integer.parseInt(nmq[1]);
        int q = Integer.parseInt(nmq[2]);

        int[][] operator = new int[q][3];
        Map<Integer, Set<Integer>> map = new HashMap<>();

        for (int i = 0; i < m; i++) {
            String[] uv = br.readLine().split(" ");
            int u = Integer.parseInt(uv[0]);
            int v = Integer.parseInt(uv[1]);
            roots.put(u, u);
            roots.put(v, v);
            map.computeIfAbsent(u, key -> new HashSet<>()).add(v);
            map.computeIfAbsent(v, key -> new HashSet<>()).add(u);
        }

        for (int i = 0; i < q; i++) {
            String[] opr = br.readLine().split(" ");
            int op = Integer.parseInt(opr[0]);
            int u = Integer.parseInt(opr[1]);
            int v = Integer.parseInt(opr[2]);

            if (op == 1) {
                if (!map.containsKey(u) || !map.containsKey(v) || !map.get(u).contains(v)) {
                    continue;
                } else {
                    map.get(u).remove(v);
                    map.get(v).remove(u);
                }
            }
            operator[i][0] = op;
            operator[i][1] = u;
            operator[i][2] = v;
        }

        for (Map.Entry<Integer, Set<Integer>> entry : map.entrySet()) {
            int u = entry.getKey();
            Set<Integer> uSet = entry.getValue();
            for (int us : uSet) {
                unionSets(u, us);
            }
        }

        List<String> ans = new ArrayList<>();
        for (int i = q - 1; i >= 0; i--) {
            int op = operator[i][0], u = operator[i][1], v = operator[i][2];
            if (op == 1) {
                if (!roots.containsKey(u) || !roots.containsKey(v)) {
                    continue;
                }
                unionSets(u, v);
            } else if (op == 2) {
                if (!roots.containsKey(u) || !roots.containsKey(v)) {
                    ans.add("No");
                    continue;
                }
                if (isInOneSet(u, v)) {
                    ans.add("Yes");
                } else {
                    ans.add("No");
                }
            }
        }

        for (int i = ans.size() - 1; i >= 0; i--) {
            bw.write(ans.get(i) + "\n");
        }

        bw.flush();
    }

    public static int find(int i) {
        if (roots.get(i) == i) {
            return i;
        }
        roots.put(i, find(roots.get(i)));
        return roots.get(i);
    }

    public static boolean isInOneSet(int i, int j) {
        return find(i) == find(j);
    }

    public static void unionSets(int i, int j) {
        int fi = find(i);
        int fj = find(j);
        if (fi != fj) {
            roots.put(fj, fi);
        }
    }
}

第一次超时Java代码如下:

import java.util.*;

public class Main {
    public static Map<Integer, Integer> roots;

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt(), m = sc.nextInt(), q = sc.nextInt();
        int[][] operator = new int[q][3];
        Map<Integer, Set<Integer>> map = new HashMap<>();
        roots = new HashMap<>();

        for (int i = 0; i < m; i++) {
            int u = sc.nextInt(), v = sc.nextInt();
            roots.put(u, u);
            roots.put(v, v);
            if (!map.containsKey(u)) {
                Set<Integer> fri = new HashSet<>();
                fri.add(v);
                map.put(u, fri);
            } else {
                map.get(u).add(v);
            }
            if (!map.containsKey(v)) {
                Set<Integer> fri = new HashSet<>();
                fri.add(u);
                map.put(v, fri);
            } else {
                map.get(v).add(u);
            }
        }

        for (int i = 0; i < q; i++) {
            int op = sc.nextInt(), u = sc.nextInt(), v = sc.nextInt();
            if (op == 1) {
                if (!map.containsKey(u) || !map.containsKey(v) || !map.get(u).contains(v)) {
                    continue;
                } else {
                    map.get(u).remove(v);
                    map.get(v).remove(u);
                }
            }
            operator[i][0] = op;
            operator[i][1] = u;
            operator[i][2] = v;
        }

        for (Map.Entry<Integer, Set<Integer>> entry : map.entrySet()) {
            int u = entry.getKey();
            Set<Integer> uSet = entry.getValue();
            for (int us : uSet) {
                union(u, us); // 并
            }
        }

        List<String> ans = new ArrayList<>();
        for (int i = q - 1; i >= 0; i--) {
            int op = operator[i][0], u = operator[i][1], v = operator[i][2];
            if (op == 1) {
                if (!roots.containsKey(u) || !roots.containsKey(v)) {
                    continue;
                }
                union(u, v);
            } else if (op == 2){
                if (!roots.containsKey(u) || !roots.containsKey(v)) {
                    ans.add("No");
                    continue;
                }
                if (isInOneSet(u, v)) {
                    ans.add("Yes");
                } else {
                    ans.add("No");
                }
            }
        }

        for (int i = ans.size() - 1; i >= 0; i--) {
            System.out.println(ans.get(i));
        }
    }

    public static int find(int i) {
        if (roots.get(i) == i) {
            return i;
        }
        int j = find(roots.get(i));
        roots.put(i, j);
        return j;
    }

    public static boolean isInOneSet(int i, int j) {
        return find(i) == find(j);
    }

    public static void union(int i, int j) {
        int fi = find(i);
        int fj = find(j);
        if (fi != fj) {
            roots.put(fj, fi);
        }
    }
}

GPT翻译的C++代码如下(AC):

#include <iostream>
#include <vector>
#include <unordered_map>
#include <unordered_set>

using namespace std;

unordered_map<int, int> roots;

int find(int i) {
    if (roots[i] == i) {
        return i;
    }
    return roots[i] = find(roots[i]);
}

bool isInOneSet(int i, int j) {
    return find(i) == find(j);
}

void unionSets(int i, int j) {
    int fi = find(i);
    int fj = find(j);
    if (fi != fj) {
        roots[fj] = fi;
    }
}

int main() {
    int n, m, q;
    cin >> n >> m >> q;
    vector<vector<int>> operatorVec(q, vector<int>(3));
    unordered_map<int, unordered_set<int>> map;

    for (int i = 0; i < m; i++) {
        int u, v;
        cin >> u >> v;
        roots[u] = u;
        roots[v] = v;
        map[u].insert(v);
        map[v].insert(u);
    }

    for (int i = 0; i < q; i++) {
        int op, u, v;
        cin >> op >> u >> v;
        if (op == 1) {
            if (map.find(u) == map.end() || map.find(v) == map.end() ||
                    map[u].find(v) == map[u].end()) {
                continue;
            } else {
                map[u].erase(v);
                map[v].erase(u);
            }
        }
        operatorVec[i][0] = op;
        operatorVec[i][1] = u;
        operatorVec[i][2] = v;
    }

    for (auto& entry : map) {
        int u = entry.first;
        unordered_set<int>& uSet = entry.second;
        for (int us : uSet) {
            unionSets(u, us);
        }
    }

    vector<string> ans;
    for (int i = q - 1; i >= 0; i--) {
        int op = operatorVec[i][0], u = operatorVec[i][1], v = operatorVec[i][2];
        if (op == 1) {
            if (roots.find(u) == roots.end() || roots.find(v) == roots.end()) {
                continue;
            }
            unionSets(u, v);
        } else if (op == 2){
            if (roots.find(u) == roots.end() || roots.find(v) == roots.end()) {
                ans.emplace_back("No");
                continue;
            }
            if (isInOneSet(u, v)) {
                ans.emplace_back("Yes");
            } else {
                ans.emplace_back("No");
            }
        }
    }

    for (int i = ans.size() - 1; i >= 0; i--) {
        cout << ans[i] << endl;
    }

    return 0;
}

第二次:Java代码改的优雅了一些,多过了一个样例,没啥用,哎,代码如下:

import java.util.*;

public class Main {

    static Map<Integer, Integer> roots = new HashMap<>();

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt(),  m = sc.nextInt(), q = sc.nextInt();
        int[][] operator = new int[q][3];
        Map<Integer, Set<Integer>> map = new HashMap<>();

        for (int i = 0; i < m; i++) {
            int u = sc.nextInt(), v = sc.nextInt();
            roots.put(u, u);
            roots.put(v, v);
            map.computeIfAbsent(u, key -> new HashSet<>()).add(v);
            map.computeIfAbsent(v, key -> new HashSet<>()).add(u);
        }

        for (int i = 0; i < q; i++) {
            int op = sc.nextInt(), u = sc.nextInt(), v = sc.nextInt();
            if (op == 1) {
                if (!map.containsKey(u) || !map.containsKey(v) || !map.get(u).contains(v)) {
                    continue;
                } else {
                    map.get(u).remove(v);
                    map.get(v).remove(u);
                }
            }
            operator[i][0] = op;
            operator[i][1] = u;
            operator[i][2] = v;
        }

        for (Map.Entry<Integer, Set<Integer>> entry : map.entrySet()) {
            int u = entry.getKey();
            Set<Integer> uSet = entry.getValue();
            for (int us : uSet) {
                unionSets(u, us);
            }
        }

        List<String> ans = new ArrayList<>();
        for (int i = q - 1; i >= 0; i--) {
            int op = operator[i][0], u = operator[i][1], v = operator[i][2];
            if (op == 1) {
                if (!roots.containsKey(u) || !roots.containsKey(v)) {
                    continue;
                }
                unionSets(u, v);
            } else if (op == 2) {
                if (!roots.containsKey(u) || !roots.containsKey(v)) {
                    ans.add("No");
                    continue;
                }
                if (isInOneSet(u, v)) {
                    ans.add("Yes");
                } else {
                    ans.add("No");
                }
            }
        }

        for (int i = ans.size() - 1; i >= 0; i--) {
            System.out.println(ans.get(i));
        }
    }

    public static int find(int i) {
        if (roots.get(i) == i) {
            return i;
        }
        roots.put(i, find(roots.get(i)));
        return roots.get(i);
    }

    public static boolean isInOneSet(int i, int j) {
        return find(i) == find(j);
    }

    public static void unionSets(int i, int j) {
        int fi = find(i);
        int fj = find(j);
        if (fi != fj) {
            roots.put(fj, fi);
        }
    }
}

  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值