我是靠谱客的博主 平常大米,最近开发中收集的这篇文章主要介绍HDU 6071 Lazy Running(同余最短路的应用),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Lazy Running

思路

还是利用同余的思想,假设存在一条长度为 k k k的路,那么也一定存在一条 k + b a s e k + base k+base的路 b a s e = 2 ∗ m i n ( d 1 , d 2 ) base = 2 * min(d1, d2) base=2min(d1,d2)

d i s [ i ] [ j ] = x dis[i][j] = x dis[i][j]=x表示的是,从 2 − > i 2 -> i 2>i x ≡ j ( m o d b a s e ) x equiv j pmod {base} xj(modbase)的满足条件的最小的 x x x,所以我们只要求出所有的 d i s [ 2 ] [ i ] dis[2][i] dis[2][i],再通过同余的性质去得到我们的最短路的花费,对于 d i s [ 2 ] [ i ] > k dis[2][i] > k dis[2][i]>k我们取 m i n ( a n s , d i s [ 2 ] [ i ] ) min(ans, dis[2][i]) min(ans,dis[2][i]),否则的话,我们取 m i n ( a n s , d i s [ 2 ] [ i ] + ( k − d i s [ 2 ] [ i ] + m i d − 1 ) / m o d ∗ m o d ) min(ans, dis[2][i] + (k - dis[2][i] + mid - 1) / mod * mod) min(ans,dis[2][i]+(kdis[2][i]+mid1)/modmod),之后我们就可以得到我们的正确解了

代码

/*
Author : lifehappy
*/
#pragma GCC optimize(2)
#pragma GCC optimize(3)
#include <bits/stdc++.h>
#define mp make_pair
#define pb push_back
#define endl 'n'
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> pii;
const double pi = acos(-1.0);
const double eps = 1e-7;
const int inf = 0x3f3f3f3f;
inline ll read() {
ll f = 1, x = 0;
char c = getchar();
while(c < '0' || c > '9') {
if(c == '-')
f = -1;
c = getchar();
}
while(c >= '0' && c <= '9') {
x = (x << 1) + (x << 3) + (c ^ 48);
c = getchar();
}
return f * x;
}
void print(ll x) {
if(x < 10) {
putchar(x + 48);
return ;
}
print(x / 10);
putchar(x % 10 + 48);
}
const int N = 6e4 + 10;
ll dis[5][N], k, d1, d2, d3, d4, mod;
vector< pair< int, ll > > G[5];
void Dijkstra() {
priority_queue< pair< ll, int >, vector< pair< ll, int > >, greater< pair< ll, int > > > q;
q.push(mp(0, 2));
memset(dis, 0x3f, sizeof dis);
dis[2][0] = 0;
while(q.size()) {
auto temp = q.top();
q.pop();
if(temp.first > dis[temp.second][temp.first % mod]) continue;
for(auto i : G[temp.second]) {
int to = i.first;
ll w = i.second + temp.first;
if(dis[to][w % mod] > w) {
dis[to][w % mod] = w;
q.push(mp(w, to));
}
}
}
}
int main() {
// freopen("in.txt", "r", stdin);
// freopen("out.txt", "w", stdout);
// ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
int t = read();
while(t--) {
k = read(), d1 = read(), d2 = read(), d3 = read(), d4 = read();
mod = min(d1, d2) * 2;
for(int i = 1; i <= 4; i++) G[i].clear();
G[1].pb(mp(2, d1)), G[1].pb(mp(4, d4));
G[2].pb(mp(3, d2)), G[2].pb(mp(1, d1));
G[3].pb(mp(2, d2)), G[3].pb(mp(4, d3));
G[4].pb(mp(3, d3)), G[4].pb(mp(1, d4));
Dijkstra();
ll ans = 0x3f3f3f3f3f3f3f3f;
for(int i = 0; i < mod; i++) {
if(k < dis[2][i]) ans = min(ans, dis[2][i]);
else {
ans = min(ans, dis[2][i] + (k - dis[2][i] + mod - 1) / mod * mod);
}
}
printf("%lldn", ans);
}
return 0;
}

最后

以上就是平常大米为你收集整理的HDU 6071 Lazy Running(同余最短路的应用)的全部内容,希望文章能够帮你解决HDU 6071 Lazy Running(同余最短路的应用)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部