9.11 京东笔试 1 0

第一题

#include <iostream>
#include <vector>
#include <map>
using namespace std;

int row, col, movee, turn, click;   // 行数 列数 移动

map<char, pair<int, int>> m_map;   // 方便查找

int abs(int a, int b)
{
    return a > b ? a - b : b - a;
}

// 给定初始位置,结束位置,计算耗时  返回耗时  引用记录位置
int timeSpend(int& armRow, int& armCol, int charRow, int charCol)
{
    int moveNum = abs(armRow, charRow) + abs(armCol, charCol);
    int turnNum;
    if (armRow != charRow && armCol != charCol)
        turnNum = 1;
    else turnNum = 0;
    int clickNum = 1;
    armRow = charRow;
    armCol = charCol;

    return moveNum * movee + turnNum * turn + clickNum * click;
}

int main()
{
    cin >> row;
    cin >> col;
    cin >> movee;
    cin >> turn;
    cin >> click;

    for (int i = 0; i != row; ++i)
    {
        for (int j = 0; j != col; ++j)
        {
            char temp;
            cin >> temp;
            m_map[temp] = pair<int, int>(i, j);
        }
    }

    string lizi;
    cin >> lizi;

    // 初始化机械臂位置
    int armRow = 0;
    int armCol = 0;

    long long SumTime = 0;
    for (int i = 0; i != lizi.size(); ++i)
    {
        auto iter = m_map.find(lizi[i]);
        SumTime += timeSpend(armRow, armCol, iter->second.first, iter->second.second);
    }

    cout << SumTime << endl;

    return 0;
}

第二题

#include <bits/stdc++.h>
using namespace std;

typedef struct Nodee {
    bool working = false;
    vector<int> need;
    vector<int> beNeeded;
} Node;

int main()
{
    int n, q;
    cin >> n >> q;
    vector<Node> node(n);

    for (int i = 0; i < n; ++i)
    {
        int c;
        cin >> c;
        for (int j = 0; j != c; ++j)
        {
            int cur;
            cin >> cur;
            node[i].need.push_back(cur - 1);
            node[cur - 1].beNeeded.push_back(i);
        }
    }

    for (int i = 0; i < q; ++i)
    {
        int x, y;
        cin >> x >> y;
        if (x == 0)
        {
            node[y - 1].working = false;
            int levelSize = 1;
            queue<int> que;
            que.push(y - 1);   // 停机的服务器序号
            while (levelSize)
            {
                for (int k = 0; k < levelSize; ++k)
                {
                    for (auto& item : node[que.front()].beNeeded)
                        if (node[item].working)
                            que.push(item);
                    node[que.front()].working = false;
                    que.pop();
                }
                levelSize = que.size();
            }
        }
        else if (x == 1)
        {
            node[y - 1].working = true;
            int levelSize = 1;
            queue<int> que;
            que.push(y - 1);
            while (levelSize)
            {
                for (int k = 0; k < levelSize; ++k)
                {
                    for (auto& item : node[que.front()].need)
                        if (!node[item].working)
                            que.push(item);
                    node[que.front()].working = true;
                    que.pop();
                }
                levelSize = que.size();
            }
        }

        int ret = 0;
        for (const auto& c : node)
            if (c.working) ++ret;

        cout << ret << endl;
    }

    system("pause");
    return 0;
}
全部评论

相关推荐

点赞 评论 收藏
分享
点赞 评论 收藏
分享
06-08 22:25
门头沟学院 Java
从零开始的转码生活:这hr不会打开手机不分青红皂白给所有人群发这句话,过一会再给所有人再发一遍,这肯定会有重复的,不管,再过一会再发一遍
点赞 评论 收藏
分享
就前几天旅游的时候,打开抖音就经常刷到这类视频:以前是高学历学生、老师、主持人,现在做着团播、擦边主播的工作,以及那些经过精心包装的“职业转型”故事——从铺天盖地的VLOG到所谓的“04年夜场工作日记”,这些内容在初中升学、高考放榜等关键时间节点持续发酵。可以说非常直接且精准地在潜移默化地影响着心智尚未成熟的青少年,使其对特殊行业逐渐脱敏。那我就想问了:某些传播公司、平台运营者甚至某些夜场的老板,你们究竟在传递怎样的价值观?点开那些视频,评论区里也是呈现明显的两极分化:一种是​​经济下行论​​:“现在就业市场已经艰难到这种程度了吗?”​​一种是事实反驳派​​:这些创作者往往拥有名校背景,从事着...
牛客刘北:被环境教育的,为了能拿到足够的钱养活自己,不甘心也得甘心,现在的短视频传播的思想的确很扭曲,但是很明显,互联网玩上一年你就能全款提A6,但你全心全意不吃不喝工作一年未必能提A6,但是在高考中考出现这个的确很扭曲,在向大家传播“不上学,玩互联网也可以轻松年入百万”,不是人变了,是社会在变
预测一下26届秋招形势
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务