代码随想录算法训练营第六十二天 | 图论part11

97. 小明逛公园

cpp 复制代码
#include <iostream>
#include <vector>
#include <climits>
#include <fstream>

using namespace std;

void floyd(vector<vector<vector<int>>>& grid) {
    int n = grid.size() - 1;
    for (int k = 1; k <= n; ++k) {
        for (int i = 1; i <= n; ++i) {
            for (int j = 1; j <= n; ++j) {
                grid[i][j][k] = min(grid[i][j][k - 1],
                    grid[i][k][k - 1] + grid[k][j][k - 1]);
            }
        }
    }
}

int main() {
    ifstream infile("input.txt");
    int n, m;
    int u, v, w;
    cin >> n >> m;
    // grid[i][j][k]代表从i到j且只经过1-k作为中间节点的最小距离
    vector<vector<vector<int>>> grid(n + 1, vector<vector<int>>(n + 1, vector<int>(n + 1, 10005)));
    while (m--) {
        cin >> u >> v >> w;
        grid[u][v][0] = w;
        grid[v][u][0] = w;
    }
    floyd(grid);
    int q;
    cin >> q;
    int start, end;
    while (q--) {
        cin >> start >> end;
        if (grid[start][end][n] != 10005) cout << grid[start][end][n] << endl;
        else cout << -1 << endl;
    }
}

127. 骑士的攻击

cpp 复制代码
#include <iostream>
#include <fstream>
#include <queue>

using namespace std;

int dir[8][2] = { -2,-1,-2,1,-1,2,1,2,2,1,2,-1,1,-2,-1,-2 };

struct Knight {
	int x, y;
	int f, g, h;
	Knight(){}
	Knight(int x, int y) : x(x), y(y) {}
	bool operator < (const Knight& k) const { return k.f < f;}
};

int Heuristic(Knight &k, int b1, int b2) {
	return (k.x - b1) * (k.x - b1) + (k.y - b2) * (k.y - b2);
}

int astar(Knight& start, int b1, int b2) {
	int moves[1001][1001] = { 0 };
	priority_queue<Knight> que;
	que.push(start);
	while (que.size()) {
		Knight k = que.top();
		Knight next;
		que.pop();
		if (k.x == b1 && k.y == b2) return moves[b1][b2];
		for (int i = 0; i < 8; ++i) {
			next.x = k.x + dir[i][0];
			next.y = k.y + dir[i][1];
			if (next.x < 1 || next.x > 1000 || next.y < 1 || next.y > 1000)
				continue;
			if (!moves[next.x][next.y])
			{
				moves[next.x][next.y] = moves[k.x][k.y] + 1;

				// 开始计算F
				next.g = k.g + 5; // 统一不开根号,这样可以提高精度,马走日,1 * 1 + 2 * 2 = 5
				next.h = Heuristic(next, b1, b2);
				next.f = next.g + next.h;
				que.push(next);
			}
		}
	}
	return -1;
}

int main() {
	ifstream infile("input.txt");
	int n;
	cin >> n;
	while (n--) {
		int a1, a2, b1, b2;
		cin >> a1 >> a2 >> b1 >> b2;
		Knight start(a1, a2);
		start.g = 0;
		start.h = Heuristic(start, b1, b2);
		start.f = start.g + start.h;
		cout << astar(start, b1, b2) << endl;
	}
	infile.close();
}
相关推荐
pianmian12 小时前
python数据结构基础(7)
数据结构·算法
好奇龙猫4 小时前
【学习AI-相关路程-mnist手写数字分类-win-硬件:windows-自我学习AI-实验步骤-全连接神经网络(BPnetwork)-操作流程(3) 】
人工智能·算法
sp_fyf_20244 小时前
计算机前沿技术-人工智能算法-大语言模型-最新研究进展-2024-11-01
人工智能·深度学习·神经网络·算法·机器学习·语言模型·数据挖掘
香菜大丸5 小时前
链表的归并排序
数据结构·算法·链表
jrrz08285 小时前
LeetCode 热题100(七)【链表】(1)
数据结构·c++·算法·leetcode·链表
oliveira-time5 小时前
golang学习2
算法
南宫生6 小时前
贪心算法习题其四【力扣】【算法学习day.21】
学习·算法·leetcode·链表·贪心算法
懒惰才能让科技进步6 小时前
从零学习大模型(十二)-----基于梯度的重要性剪枝(Gradient-based Pruning)
人工智能·深度学习·学习·算法·chatgpt·transformer·剪枝
Ni-Guvara7 小时前
函数对象笔记
c++·算法
泉崎7 小时前
11.7比赛总结
数据结构·算法