8.7米哈游笔试

米哈游有点坑 只能用CPP 导致Java选手全程都在回忆CPP的API 浪费了很长时间 CPP不太会写 大佬勿喷 之后更新Java版本的题解

有七种不同类型的怪物用七个不同字母表示(w,i,t,f,g,s,b),随后输入第一个数字表示查询的数目,在查询中,1表示往队列中加入一个类型的怪兽,2表示从队首弹出该怪兽,3表示返回该队列中不同怪兽类型的数量;
例:
输入
2
1 b
3
输出
1

/CPP
int main(){
    vector<string> strs;
    string str;
    queue<int> q;
    map<char,int> names; //七种各对应一个数字来表示
    names.insert({'w',0});
    names.insert({'i',1});
    names.insert({'t',2});
    names.insert({'f',3});
    names.insert({'g',4});
    names.insert({'s',5});
    names.insert({'b',6});
    int cnt[7]={0,0,0,0,0,0,0};
    int num;
    int typenum=0;
    cin>>num;
    char ty;
    for (int i = 0; i < num; ++i) {
        cin>>str;
        if(str=="1"){
            cin>>ty;
            int no = names.find(ty)->second;
            if(cnt[no]==0) typenum++;
            cnt[no]++;
            q.push(no);
        }
        if(str=="2"){
            int ou = q.front();
            cnt[ou]--;
            if(cnt[ou]==0){
                typenum--;
            }
        }
        if(str=="3"){
            cout<<typenum<<endl;
        }
    }

}

2.跳跃游戏 有一堆石头,你需要按顺序跳他们,每块石头标记了跳到该块石头需要花费的步数,同时步数也受到限制 如果每次跳跃成功加30分,如果不能再跳跃则结束,如果到最后一个石头则结束

#include<iostream>
using namespace std;

int main(){
    int num;
    int maxdis;
    cin>>num;
    cin>>maxdis;
    int stones[num];
    int fib[maxdis];
    for(int i=0;i<num;i++){
        cin>>stones[i];
    }
    for(int i=0;i<maxdis;i++){
        cin>>fib[i];
    }
    int score = 0;
    for(int i=0;i<num;i++){
        int distance = stones[i];
//        if(distance>maxdis){
//            break;
//        }
        if(fib[distance-1]==0){
            break;
        } else{
            fib[distance-1]--;
            score+=30;
        }
    }
    cout<<score;
}

给一颗树 检查其中每个节点是一个输入的字符 检查节点和邻居组成形式为abb的个数

//不太熟悉CPP 用java写的 不知道对不对 如果有错误希望大家纠正
//思路是用dfs
public class Test03 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int num = Integer.parseInt(sc.nextLine());
        Map<Integer, List<Integer>> tree = new HashMap<>();
        String ch = sc.nextLine();
        boolean[] visited = new boolean[num];
        for(int i=0;i<num+1;i++){
            int[] nums = Arrays.stream(sc.nextLine().split(" ")).mapToInt(Integer::parseInt).toArray();
            tree.computeIfAbsent(nums[0],k->new ArrayList<>()).add(nums[1]);
            tree.computeIfAbsent(nums[1],k->new ArrayList<>()).add(nums[0]);
        }
        int res = 0;
        for(int i=1;i<num+1;i++){
            boolean is = dfs(tree,i,1,1,ch);
            if(is){
                res++;
            }
        }
        System.out.println(res);
    }
    public static boolean dfs(Map<Integer, List<Integer>> tree,int last,int level,int node,String ch){
        if(level>3) return false;
        if(level==1){
            for (int i : tree.get(node)) {
                boolean is = dfs(tree,node,level+1,i,ch);
                if(is){
                    return true;
                }
            }
        }
        if(level==2){
            if(ch.charAt(last-1)==ch.charAt(node-1)) return false;
            for (int i : tree.get(node)) {
                boolean is = dfs(tree,node,level+1,i,ch);
                if(is){
                    return true;
                }
            }
        }
        if(level==3){
            if(ch.charAt(node-1)==ch.charAt(last)){
                return true;
            }
        }
        return false;
    }
}
#米哈游笔试##Java求职##米哈游笔试有多难#
全部评论
为啥我可以用java呀?
1 回复 分享
发布于 2022-08-08 09:15
岗位不一样吗,我和你的卷子好像不一样,我可以用java,但是我遇到了那个战斗的题目,绝望!!
点赞 回复 分享
发布于 2022-08-07 23:59
楼主收到米哈游补充卷的邮件了嘛?
点赞 回复 分享
发布于 2022-08-09 11:09
理想汽车校招内推码: PSJGRY6 造车新势力-【理想汽车】提前批来啦!!! ✨ 薪资顶格,六险一金,包餐两顿 ✨企业文化很open,领导们都很和蔼~ 这还不catch you??! ​提前批相对于多一次选择机会,uu们简历炫起来吧!(还可以帮你在线查进度哟[旺柴])
点赞 回复 分享
发布于 2022-08-14 12:54

相关推荐

10-14 23:01
已编辑
中国地质大学(武汉) Java
CUG芝士圈:虽然是网上的项目,但最好还是包装一下,然后现在大部分公司都在忙校招,十月底、十一月初会好找一些。最后,boss才沟通100家,别焦虑,我去年暑假找第一段实习的时候沟通了500➕才有面试,校友加油
点赞 评论 收藏
分享
已老实求offer😫:有点像徐坤(没有冒犯的意思哈)
点赞 评论 收藏
分享
6 40 评论
分享
牛客网
牛客企业服务