Silver Cow Party(USACO 07 FEB POJ3268)

2024-02-05 10:58
文章标签 cow 07 poj3268 silver party usaco feb

本文主要是介绍Silver Cow Party(USACO 07 FEB POJ3268),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Silver Cow Party

(USACO 07 FEB)

Time Limit: 2000MS
Memory Limit: 65536K
Total Submissions: 21673

Description
One cow from each of N farms (1 ≤ N ≤ 1000) conveniently numbered 1..N is going to attend the big cow party to be held at farm #X (1 ≤ X ≤ N). A total of M (1 ≤ M ≤ 100,000) unidirectional (one-way roads connects pairs of farms; road i requires Ti (1 ≤ Ti ≤ 100) units of time to traverse.

Each cow must walk to the party and, when the party is over, return to her farm. Each cow is lazy and thus picks an optimal route with the shortest time. A cow’s return route might be different from her original route to the party since roads are one-way.

Of all the cows, what is the longest amount of time a cow must spend walking to the party and back?

Input

Line 1: Three space-separated integers, respectively: N, M, and X
Lines 2..M+1: Line i+1 describes road i with three space-separated integers: Ai, Bi, and Ti. The described road runs from farm Ai to farm Bi, requiring Ti time units to traverse.
Output
Line 1: One integer: the maximum of time any one cow must walk.

Sample Input
4 8 2
1 2 4
1 3 2
1 4 7
2 1 1
2 3 5
3 1 2
3 4 4
4 2 3

Sample Output
10

Hint
Cow 4 proceeds directly to the party (3 units) and returns via farms 1 and 3 (7 units), for a total of 10 time units.

Source
USACO 2007 February Silver

Translation

翻译

N头牛都要去参加一场在编号为X(1≤X≤N)的牛的农场举行的派对(1≤N≤1000),农场之间有M(1≤M≤100000)条有向路,每条路长Ti(1≤Ti≤100)。

每头牛参加完派对后都必须回家,无论是去参加派对还是回家,每头牛都会选择最短路径,求这N头牛的最短路径(一个来回)中最长的一条路径长度。

输入输出格式

输入格式:
第一行三个整数N,M, X;

第二行到第M+1行:每行有三个整数Ai,Bi, Ti ,表示有一条从Ai农场到Bi农场的道路,长度为Ti。

输出格式:
一个整数,表示最长的最短路得长度。

输入输出样例

输入样例#1:
4 8 2
1 2 4
1 3 2
1 4 7
2 1 1
2 3 5
3 1 2
3 4 4
4 2 3
输出样例#1:
10
今天我们接着说SPFA,借助这道题加深巩固一下。
说起最短路这样的图论题,还是要多做的。那么我们今天就看看USACO的07年2月题目–Silver Cow Party(银牛聚会)。同时也是POJ3268的题目。
这个题与请柬(双向SPFA及SLF LLL优化法模板题)很相似,可以先了解一下这道题,会对本题算法有帮助↑↑↑。
然后就说说思路,本题其实就是给你一个带权值的有向图,找出最小的路径,能让cow从start点回家,再回到start点。很容易想到双向最短路,这里我们仍然是用SPFA,准备两组链表,一个记录正方向,一个记录反方向,然后先正向刷一遍SPFA,再逆向刷一遍,然后把两次的加和都拿出来比较比较,求一个MAX,输出即可。
这里我们仍然用了SLF与LLL,其实这个题朴素SPFA应该也能过。

结果

秀一下结果吧。

POJ

Problem: 3268 User: Stockholm
Memory: 416K Time: 63MS
Language: C++ Result: Accepted

洛谷

代码

(C++)

#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<deque>
#include<cstring>
using namespace std;
int i,j,m,n,ii,s;
int sum,tot,len[1006],len2[1006];
bool b[1005];
deque<int> q;
struct data
{int y,v;struct data *nxt;
}a[100001],e[100001];int head[1005],hed2[1005],toto;
int r()
{char ch=getchar();int ans=0,f=1;while(ch>'9'||ch<'0'){if(ch=='-')f=-1;ch=getchar();}while(ch<='9'&&ch>='0'){ans*=10;ans+=ch-'0';ch=getchar();}return ans;
}
int spfa(int x)
{tot=1;sum=0;memset(len,0x7f7f7f,sizeof(len));len[x]=0;q.push_front(x);b[x]=1;struct data *p;while(!q.empty()){p=&a[head[q.front()]];x=q.front();q.pop_front();b[x]=0;tot--;sum-=len[p->y];while(p->y){int yy=p->y;if(len[yy]>p->v+len[x]){len[yy]=p->v+len[x];if(!b[yy]){b[yy]=1;if(q.empty()||len[yy]*tot<=sum||len[yy]>len[q.front()])q.push_back(yy);elseq.push_front(yy);tot++;sum+=len[yy];}}p=p->nxt;}} 
}
void spfa2(int x)
{tot=1;sum=0;memset(len2,0x7f7f7f,sizeof(len2));len2[x]=0;q.push_front(x);b[x]=1;struct data *p;while(!q.empty()){p=&e[hed2[q.front()]];x=q.front();q.pop_front();b[x]=0;tot--;sum-=len2[p->y];while(p->y){int yy=p->y;if(len2[yy]>p->v+len2[x]){len2[yy]=p->v+len2[x];if(!b[yy]){b[yy]=1;if(q.empty()||len2[yy]*tot<=sum||len2[yy]>len2[q.front()])q.push_back(yy);elseq.push_front(yy);tot++;sum+=len2[yy];}}p=p->nxt;}} 
}
int main()
{n=r();m=r();s=r();int xx;for(i=1;i<=m;i++){xx=r();a[i].y=r();a[i].v=r();a[i].nxt=&a[head[xx]];head[xx]=i;e[i].v=a[i].v;e[i].y=xx;e[i].nxt=&e[hed2[a[i].y]];hed2[a[i].y]=i;}spfa(s);memset(b,0,sizeof(b));spfa2(s);xx=0;for(i=1;i<=n;i++)xx=max(xx,len[i]+len2[i]);cout<<xx;
}

这篇关于Silver Cow Party(USACO 07 FEB POJ3268)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/680694

相关文章

usaco 1.3 Prime Cryptarithm(简单哈希表暴搜剪枝)

思路: 1. 用一个 hash[ ] 数组存放输入的数字,令 hash[ tmp ]=1 。 2. 一个自定义函数 check( ) ,检查各位是否为输入的数字。 3. 暴搜。第一行数从 100到999,第二行数从 10到99。 4. 剪枝。 代码: /*ID: who jayLANG: C++TASK: crypt1*/#include<stdio.h>bool h

usaco 1.3 Calf Flac(暴搜)

思路是暴搜。 需要注意的地方是输入的方法,以及输出时的换行。 代码: /*ID: who jayLANG: C++TASK: calfflac*/#include<stdio.h>#include<string.h>#include<math.h>int main(){freopen("calfflac.in","r",stdin);freopen("calfflac.ou

usaco 1.3 Barn Repair(贪心)

思路:用上M块木板时有 M-1 个间隙。目标是让总间隙最大。将相邻两个有牛的牛棚之间间隔的牛棚数排序,选取最大的M-1个作为间隙,其余地方用木板盖住。 做法: 1.若,板(M) 的数目大于或等于 牛棚中有牛的数目(C),则 目测 给每个牛牛发一个板就为最小的需求~ 2.否则,先对 牛牛们的门牌号排序,然后 用一个数组 blank[ ] 记录两门牌号之间的距离,然后 用数组 an

usaco 1.3 Mixing Milk (结构体排序 qsort) and hdu 2020(sort)

到了这题学会了结构体排序 于是回去修改了 1.2 milking cows 的算法~ 结构体排序核心: 1.结构体定义 struct Milk{int price;int milks;}milk[5000]; 2.自定义的比较函数,若返回值为正,qsort 函数判定a>b ;为负,a<b;为0,a==b; int milkcmp(const void *va,c

usaco 1.2 Palindromic Squares(进制转化)

考察进制转化 注意一些细节就可以了 直接上代码: /*ID: who jayLANG: C++TASK: palsquare*/#include<stdio.h>int x[20],xlen,y[20],ylen,B;void change(int n){int m;m=n;xlen=0;while(m){x[++xlen]=m%B;m/=B;}m=n*n;ylen=0;whi

usaco 1.2 Name That Number(数字字母转化)

巧妙的利用code[b[0]-'A'] 将字符ABC...Z转换为数字 需要注意的是重新开一个数组 c [ ] 存储字符串 应人为的在末尾附上 ‘ \ 0 ’ 详见代码: /*ID: who jayLANG: C++TASK: namenum*/#include<stdio.h>#include<string.h>int main(){FILE *fin = fopen (

usaco 1.2 Milking Cows(类hash表)

第一种思路被卡了时间 到第二种思路的时候就觉得第一种思路太坑爹了 代码又长又臭还超时!! 第一种思路:我不知道为什么最后一组数据会被卡 超时超了0.2s左右 大概想法是 快排加一个遍历 先将开始时间按升序排好 然后开始遍历比较 1 若 下一个开始beg[i] 小于 tem_end 则说明本组数据与上组数据是在连续的一个区间 取max( ed[i],tem_end ) 2 反之 这个

usaco 1.2 Transformations(模拟)

我的做法就是一个一个情况枚举出来 注意计算公式: ( 变换后的矩阵记为C) 顺时针旋转90°:C[i] [j]=A[n-j-1] [i] (旋转180°和270° 可以多转几个九十度来推) 对称:C[i] [n-j-1]=A[i] [j] 代码有点长 。。。 /*ID: who jayLANG: C++TASK: transform*/#include<

usaco 1.1 Broken Necklace(DP)

直接上代码 接触的第一道dp ps.大概的思路就是 先从左往右用一个数组在每个点记下蓝或黑的个数 再从右到左算一遍 最后取出最大的即可 核心语句在于: 如果 str[i] = 'r'  ,   rl[i]=rl[i-1]+1, bl[i]=0 如果 str[i] = 'b' ,  bl[i]=bl[i-1]+1, rl[i]=0 如果 str[i] = 'w',  bl[i]=b

07 v-if和v-show使用和区别

划重点: v-ifv-show 小葱拌豆腐 <!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta http-equiv="X-UA-Compatible" content="