poj3613 Cow Relays【好题】【最短路】【快速幂】
Time Limit: 1000MS | Memory Limit: 65536K | |
Total Submissions:9207 | Accepted: 3604 |
Description
For their physical fitness program, N (2 ≤ N ≤ 1,000,000) cows have decided to run a relay race using the T (2 ≤ T ≤ 100) cow trails throughout the pasture.
Each trail connects two different intersections (1 ≤ I1i ≤ 1,000; 1 ≤ I2i ≤ 1,000), each of which is the termination for at least two trails. The cows know the lengthi of each trail (1 ≤ lengthi ≤ 1,000), the two intersections the trail connects, and they know that no two intersections are directly connected by two different trails. The trails form a structure known mathematically as a graph.
To run the relay, the N cows position themselves at various intersections (some intersections might have more than one cow). They must position themselves properly so that they can hand off the baton cow-by-cow and end up at the proper finishing place.
Write a program to help position the cows. Find the shortest path that connects the starting intersection (S) and the ending intersection (E) and traverses exactly N cow trails.
Input
* Line 1: Four space-separated integers: N, T, S, and E
* Lines 2..T+1: Line i+1 describes trail i with three space-separated integers: lengthi , I1i , and I2i
Output
* Line 1: A single integer that is the shortest distance from intersection S to intersection E that traverses exactly N cow trails.
Sample Input
2 6 6 4
11 4 6
4 4 8
8 4 9
6 6 8
2 6 9
3 8 9
Sample Output
10
Source
题意:
在一个图上求从$S$到$E$的,刚好经过$n$条边的最短路径长。
思路:
没想到最短路的题目还可以用快速幂。也没想到快速幂还可以这么写。
这道题边最多是100条,所以可以先把点离散化。离散化后点的编号最大是$node_cnt$
最初的矩阵$G[i,j]$中存储的其实是从$i$经过一条边到达$j$的最短路
那么$G^{(2)}[i, j] = \min_{1\leq k\leq node_cnt}{G[i, k] + G[k, j]}$就可以表示从$i$经过两条边到达$j$的最短路
如果矩阵$G^{(m)}$表示任意两点之间恰好经过$m$条边的最短路,那么
$G^{(r+m)}[i, j] = \min_{1\leq k\leq node_cnt}{G^{(r)}[i, k] + G^{(m)}[k, j]}$
这就可以使用快速幂进行递推了。只需要把$matrix$的乘法操作中,$+=$变成$\min$, $*$变成$+$
注意矩阵要初始化为$+\infty$
#include<iostream>
//#include<bits/stdc++.h>
#include<cstdio>
#include<cmath>
#include<cstdlib>
#include<cstring>
#include<algorithm>
#include<queue>
#include<vector>
#include<set>
#include<climits>
#include<map>
using namespace std;
typedef long long LL;
#define N 100010
#define pi 3.1415926535
#define inf 0x3f3f3f3f int n, t, S, E;
const int maxn = ;
int node_cnt;
struct matrix{
int m[maxn][maxn];
//int m_size;
matrix operator *(const matrix &b)const{
matrix ret;
memset(ret.m, 0x3f, sizeof(ret.m));
for(int i = ; i <= node_cnt; i++){
for(int j = ; j <= node_cnt; j++){
//ret.m[i][j] = inf;
for(int k = ; k <= node_cnt; k++){
ret.m[i][j] = min(m[i][k] + b.m[k][j], ret.m[i][j]);
}
}
}
return ret;
}
}g;
//int g[maxn][maxn];
struct edge{
int u, v, length;
}e[];
set<int>nodes;
set<int>::iterator set_it;
map<int, int>node_mp; matrix ksm(matrix a, int x)
{
matrix ret, k;
k = a;
ret = a;
x--;
while(x){
if(x & ){
ret = ret * k;
}
x >>= ;
k = k * k;
}
return ret;
} int main()
{
while(scanf("%d%d%d%d", &n, &t, &S, &E) != EOF){
for(int i = ; i < t; i++){
scanf("%d%d%d", &e[i].length, &e[i].u, &e[i].v);
nodes.insert(e[i].u);
nodes.insert(e[i].v);
} node_cnt = ;
for(set_it = nodes.begin(); set_it != nodes.end(); set_it++){
node_mp[*set_it] = ++node_cnt;
}
//g.m_size = node_cnt;
memset(g.m, 0x3f, sizeof(g.m));
for(int i = ; i < t; i++){
int u = e[i].u, v = e[i].v;
g.m[node_mp[u]][node_mp[v]] = e[i].length;
g.m[node_mp[v]][node_mp[u]] = e[i].length;
}
/*for(int i = 1; i <= node_cnt; i++){
for(int j = 1; j <= node_cnt; j++){
cout<<g.m[i][j]<<" ";
}
cout<<endl;
}*/ matrix ans = ksm(g, n);
//cout<<node_mp[S]<<" "<<node_mp[E]<<endl;
printf("%d\n", ans.m[node_mp[S]][node_mp[E]]);
}
return ;
}
poj3613 Cow Relays【好题】【最短路】【快速幂】的更多相关文章
- Cow Relays POJ - 3613 (floyd+快速幂)
For their physical fitness program, N (2 ≤ N ≤ 1,000,000) cows have decided to run a relay race usin ...
- POJ3613 Cow Relays(矩阵快速幂)
题目大概要求从起点到终点恰好经过k条边的最短路. 离散数学告诉我们邻接矩阵的k次幂就能得出恰好经过k条路的信息,比如POJ2778. 这题也一样,矩阵的幂运算定义成min,而min满足结合律,所以可以 ...
- [POJ3613] Cow Relays(Floyd+矩阵快速幂)
解题报告 感觉这道题gyz大佬以前好像讲过一道差不多的?然鹅我这个蒟蒻发现矩阵快速幂已经全被我还给老师了...又恶补了一遍,真是恶臭啊. 题意 给定一个T(2 <= T <= 100)条边 ...
- POJ3613 Cow Relays [矩阵乘法 floyd类似]
Cow Relays Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 7335 Accepted: 2878 Descri ...
- 疯子的算法总结(九) 图论中的矩阵应用 Part 1+POJ3613 Cow Relays
图的存储有邻接矩阵,那么他就具备一些矩阵的性质,设有一个图的demo[100][100];那么demo[M][N]就是M—>N的距离,若经过一次松弛操作demo[M][N]=demo[M][K] ...
- 【POJ3613 Cow Relays】(广义矩阵乘法)
题目链接 先离散化,假设有\(P\)个点 定义矩阵\(A_{ij}\)表示\(i\)到\(j\)只经过一条边的最短路,\[{(A^{a+b})_{ij}=\min_{1\le k\le p} \{ ( ...
- [POJ3613] Cow Relays
link 题目大意 给你一个含有边权的无向图,问从$S$到$T$经过$N$条边的最小花费. 试题分析 我们可以很容易推导$dp$方程,$dp(k,i,j)$表示经过$k$条边从$i$到$j$的最小花费 ...
- (中等) CF 576D Flights for Regular Customers (#319 Div1 D题),矩阵快速幂。
In the country there are exactly n cities numbered with positive integers from 1 to n. In each city ...
- E题:Water Problem(快速幂模板)
题目大意:原题链接 题解链接 解题思路:令x=x-1代入原等式得到新的等式,两式相加,将sin()部分抵消掉,得到只含有f(x)的状态转移方程f(x+1)=f(x)+f(x-2)+f(x-3),然后 ...
随机推荐
- Oracle 12c中文乱码,修改字符集的方法
在windows 7 64位上安装Oracle 12c没有设定字符集,采用的是操作系统默认字符集:WE8MSWIN1252,将字符集修改为:ZHS16GBK.由于过程不可逆,首先需要备份数据库. 1. ...
- InnoDB 存储引擎的主要知识点介绍
本文转载自:Draveness,略有修改 原文链接:『浅入浅出』MySQL 和 InnoDB · 面向信仰编程 作为一名开发人员,在日常的工作中会难以避免地接触到数据库,无论是基于文件的 sqlite ...
- 查看占用IO的进程
查看占用IO的进程 http://www.xaprb.com/blog/2009/08/23/how-to-find-per-process-io-statistics-on-linux/
- oracle本地编译问题
oracle10.2: --将过程重新编译为本地编译方式,提示有编译错误,经查提示未设置plsql_native_library_dir 参数 SQL> alter procedure p_xx ...
- VisualStudio2013下安装Python Flask/jade
为什么是Python? 不做程序的工作好久了,当创业成为工作后越发发现时间的宝贵.时间那么少,需求确实多样的,软件的,web的,还得跨平台,以前熟悉的.Net明显每一项满足的.选来选去还是Python ...
- Fluent动网格【6】:部件变形案例
本案例描述使用动网格过程中处理边界变形的问题. 案例描述 本案例几何为一个抛物线旋转成型的几何体.如图所示. 其中上壁面刚体运动引起抛物面变形.刚体运动方程为: \[ v=\left\{ \begin ...
- 在C#用HttpWebRequest中发送GET/HTTP/HTTPS请求(转)
通用辅助类 下面是我编写的一个辅助类,在这个类中采用了HttpWebRequest中发送GET/HTTP/HTTPS请求,因为有的时候需要获取认证信息(如Cookie),所以返回的是HttpWebRe ...
- ECSHOP后台编辑器不能上传中文名图片的解决办法
在后台上传商品图片的时候,如果你选择一个中文名称的图片,那么上传后会产生乱码,导致图片显示不出来. 下面说一种解决办法: 使用“年月日时分秒 + 6个随机字符”做为文件名,如 201010161356 ...
- Linux查看文件总的数据行数,并按行拆分
先利用 wc -l BLM.txt 读出 BLM.txt 文件一共有多少行. 再 1. 以行数拆分 -l 参数: split –l 50 原始文件 拆分后文件名前缀 例:以50行对文件进行 ...
- vue事件处理器
1.监听事件 可以用 v-on 指令监听 DOM 事件来触发一些 JavaScript 代码. 示例: <div id="example-1"> <button ...