京东笔试 9.11

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;
}

9.14更新
#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;
}


#互联网求职##京东#
全部评论
秒啊
点赞 回复 分享
发布于 2021-09-11 21:41

相关推荐

10-11 17:30
湖南大学 C++
我已成为0offer的糕手:羡慕
点赞 评论 收藏
分享
评论
点赞
1
分享
正在热议
# 25届秋招总结 #
443839次浏览 4528人参与
# 春招别灰心,我们一人来一句鼓励 #
42377次浏览 539人参与
# 北方华创开奖 #
107504次浏览 600人参与
# 地方国企笔面经互助 #
7980次浏览 18人参与
# 同bg的你秋招战况如何? #
77468次浏览 569人参与
# 实习必须要去大厂吗? #
55834次浏览 961人参与
# 阿里云管培生offer #
120541次浏览 2222人参与
# 虾皮求职进展汇总 #
116677次浏览 889人参与
# 如果你有一天可以担任公司的CEO,你会做哪三件事? #
11755次浏览 294人参与
# 实习,投递多份简历没人回复怎么办 #
2455156次浏览 34862人参与
# 提前批简历挂麻了怎么办 #
149980次浏览 1979人参与
# 在找工作求抱抱 #
906157次浏览 9423人参与
# 如果公司给你放一天假,你会怎么度过? #
4769次浏览 56人参与
# 你投递的公司有几家约面了? #
33210次浏览 188人参与
# 投递实习岗位前的准备 #
1196109次浏览 18551人参与
# 机械人春招想让哪家公司来捞你? #
157654次浏览 2267人参与
# 双非本科求职如何逆袭 #
662449次浏览 7397人参与
# 发工资后,你做的第一件事是什么 #
12818次浏览 62人参与
# 工作中,努力重要还是选择重要? #
35996次浏览 384人参与
# 简历中的项目经历要怎么写? #
86964次浏览 1517人参与
# 参加完秋招的机械人,还参加春招吗? #
20161次浏览 240人参与
# 我的上岸简历长这样 #
452091次浏览 8089人参与
牛客网
牛客企业服务